Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

type: ignore doesn't work with multi-line statements #3448

Closed
sharmaeklavya2 opened this issue May 25, 2017 · 6 comments
Closed

type: ignore doesn't work with multi-line statements #3448

sharmaeklavya2 opened this issue May 25, 2017 · 6 comments

Comments

@sharmaeklavya2
Copy link

file.py:

1 \
+ '2'  # type: ignore

gives output

file.py:1: error: Unsupported operand types for + ("int" and "str")

which is wrong IMO.

@ddfisher
Copy link
Collaborator

#type: ignore must be placed on the same line as the error. You won't be able to do that with backslash multi line statements, but those aren't considered good style anyway. If you need a type ignore on a multi line statement, use parens and place the type ignore on the line with the error.

sharmaeklavya2 added a commit to sharmaeklavya2/zulip that referenced this issue May 25, 2017
Also put statements in one line because of
python/mypy#3448.
@dumblob
Copy link

dumblob commented Jan 7, 2020

Unfortunately the suggested workaround doesn't work for

from x import long, list, of, symbols, ... \
    wrapping, around, and, further, ... \
    ...

(e.g.

from flask_login import LoginManager, login_required, login_user, \
    logout_user, UserMixin, current_user  # type: ignore

)

Any ideas?

@JelleZijlstra
Copy link
Member

You can put parentheses around your long list of imports instead of using backslashes.

@dumblob
Copy link

dumblob commented Jan 7, 2020

As I wrote, I can't make it work:

from module_mypy_doesnt_know import ( a, b,
    c, d,
    e, f )  # type: ignore
test.py:1: error: Cannot find implementation or library stub for module named 'module_mypy_doesnt_know'
test.py:1: note: See https://mypy.readthedocs.io/en/latest/running_mypy.html#missing-imports
Found 1 error in 1 file (checked 1 source file)

@JelleZijlstra
Copy link
Member

Try

from module_mypy_doesnt_know import ( a, b,  # type: ignore
    c, d,
    e, f )

The type ignore has to be on the physical line where the error is reported.

@dumblob
Copy link

dumblob commented Jan 7, 2020

The type ignore has to be on the physical line where the error is reported.

Seems to work, thanks. Though I find it really nasty - any good reason to have it like that (except for "wasn't yet implemented, because python parsing is too rigidly line oriented")?

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants