Skip to content

Commit

Permalink
lint and black
Browse files Browse the repository at this point in the history
  • Loading branch information
erlichsefi committed Jan 13, 2024
1 parent e8a254d commit 1a05958
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
with open("README.md", encoding="utf-8") as f:
long_description = "\n" + f.read()

with open('requirements.txt') as f:
with open("requirements.txt", encoding="utf-8") as f:
required = f.read().splitlines()

with open('requirements-dev.txt') as f:
with open("requirements-dev.txt", encoding="utf-8") as f:
dev_required = f.read().splitlines()

setup(
Expand All @@ -24,7 +24,7 @@
"il_supermarket_scarper.utils",
],
# Needed for dependencies
install_requires= required,
install_requires=required,
tests_require=dev_required,
extras_require={"test": ["pytest"]},
# *strongly* suggested for sharing
Expand Down

0 comments on commit 1a05958

Please sign in to comment.