Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

False positive UndefinedName with typing.Literal #109

Open
Jasha10 opened this issue May 26, 2022 · 0 comments
Open

False positive UndefinedName with typing.Literal #109

Jasha10 opened this issue May 26, 2022 · 0 comments

Comments

@Jasha10
Copy link

Jasha10 commented May 26, 2022

I am getting a false positive with typing.Literal:

# repro.py
import autoflake

code = """
from typing import Literal as L

var: L["* time"] = "* time"
"""

ret = autoflake.check(code)[0]
print("Got autoflake error:")
print(ret.message % ret.message_args)
$ python repro.py
Got autoflake error:
undefined name 'time'
$ autoflake --version
autoflake 1.4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant