Skip to content

Commit

Permalink
correct format
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulDanielML committed Feb 9, 2022
1 parent 3d5d471 commit 349c889
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions helpers/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,7 @@ async def cor_download_single(
row["downloaded"] = False
row["correct_tag"] = True

accommodation_code = (
row["accommodation_code"] if "accommodation_code" in row else "Unknown"
)
accommodation_code = row["accommodation_code"] if "accommodation_code" in row else "Unknown"
file_name = row[file_column_name]

# simple way to retry failed downloads
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@ def _read_requirements():
return ""


install_requires = [
l for l in _read_requirements().split("\n") if l and not l.startswith("#")
]
install_requires = [l for l in _read_requirements().split("\n") if l and not l.startswith("#")]

setuptools.setup(
name="helpers",
Expand Down

0 comments on commit 349c889

Please sign in to comment.