-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* issue fix by limiting only bringing records till s8 * updated import by isort * ignore needing to add local package to requirements.txt * staticaly type the code * adding autopep8 * allow autopep8 goinside directory * formatting/comment error for setup.cfg file * add flake8-isort in requirements.txt * use isort recursive * mypy bug --no-warn-no-return github.com/python/mypy/issues/8823
- Loading branch information
Showing
8 changed files
with
129 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,6 @@ | |
.direnv | ||
.envrc | ||
__pycache__ | ||
.mypy_cache | ||
.mypy_cache | ||
venv | ||
out/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
requests | ||
types-requests | ||
autopep8 | ||
flake8-isort |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
autopep8==1.5.7 | ||
certifi==2021.5.30 | ||
chardet==4.0.0 | ||
flake8==3.9.2 | ||
flake8-isort==4.0.0 | ||
idna==2.10 | ||
importlib-metadata==4.6.0 | ||
isort==5.9.1 | ||
mccabe==0.6.1 | ||
pycodestyle==2.7.0 | ||
pyflakes==2.3.1 | ||
requests==2.25.1 | ||
testfixtures==6.17.1 | ||
toml==0.10.2 | ||
typing-extensions==3.10.0.0 | ||
urllib3==1.26.6 | ||
zipp==3.5.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[flake8] | ||
# autopep, bandit, wemake-python-styleguide(WPS) will use this as well. | ||
ignore = I900 | ||
#ds_status_sync.py:28:1: I900 'sds_flat' not listed as a requirement | ||
exclude = .git,venv | ||
in-place = true | ||
#for autopep8 to go insid directory | ||
recursive = true | ||
|
||
[isort] | ||
#sort import | ||
SKIP = .git,venv | ||
#verbose=True |