Skip to content

Commit

Permalink
mypy bug --no-warn-no-return github.com/python/mypy/issues/8823
Browse files Browse the repository at this point in the history
  • Loading branch information
lav-patel committed Jul 3, 2021
1 parent ee8914c commit 96d294e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ autoblack:
#black .

static:
$(MYPY) --strict $(SRCS)
# ds_status_sync.py:311: error: unused "type: ignore" comment
# ds_status_sync.py:343: error: unused "type: ignore" comment
# using --no-warn-no-return to hide above error
$(MYPY) --strict $(SRCS) --no-warn-no-return

lint-import:
# this does import sorting for you, where flak8-isort will check it for you
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
requests
types-requests
autopep8
flake8-isort

0 comments on commit 96d294e

Please sign in to comment.