-
Notifications
You must be signed in to change notification settings - Fork 282
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
Errors with map
#1324
Comments
Thanks for the report! Could you give an example of how you're using |
Hi @rchen152 ! I hit this again in python/typeshed#11455 And the associated GitHub actions run: https://github.com/python/typeshed/actions/runs/8073594519/job/22057530767?pr=11455 Unfortunately this time adding
|
When trying to use the
map
class in a type stub, I get the following errors:pytype.pytd.visitors.SymbolLookupError: Couldn't find map in
some.module
This can be worked around by importing map from builtins:
from builtins import map
The text was updated successfully, but these errors were encountered: