Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Apr 16, 2022
1 parent a7f4a9e commit b45fbf5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dask-gateway-server/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,10 @@ def run(self):


install_requires = []
with open('requirements.txt') as f:
with open("requirements.txt") as f:
for line in f.readlines():
req = line.strip()
if not req or req.startswith('#'):
if not req or req.startswith("#"):
continue
install_requires.append(req)

Expand Down
4 changes: 2 additions & 2 deletions dask-gateway/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
VERSION = ns["__version__"]

install_requires = []
with open('requirements.txt') as f:
with open("requirements.txt") as f:
for line in f.readlines():
req = line.strip()
if not req or req.startswith('#'):
if not req or req.startswith("#"):
continue
install_requires.append(req)

Expand Down

0 comments on commit b45fbf5

Please sign in to comment.