You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ flake8 --select E704 test_case.pytest_case.py:8:1: E704 multiple statements on one line (def)test_case.py:12:1: E704 multiple statements on one line (def)test_case.py:16:1: E704 multiple statements on one line (def)
I believe all three E704 entries are false positives, and should be special cased for the combination of @overload and elipsis.
The text was updated successfully, but these errors were encountered:
how did you install flake8?
$ pip install -U flake8
unmodified output of
flake8 --bug-report
describe the problem
what I expected to happen
This is a test case based on the one in #1575, but formatted with black 24.2.0 which uses a one-line def for the overload type annotation entries:
sample code
commands ran
I believe all three E704 entries are false positives, and should be special cased for the combination of
@overload
and elipsis.The text was updated successfully, but these errors were encountered: