apify / apify-client-python

Apify API client for Python
https://docs.apify.com/api/client/python/
Apache License 2.0
44 stars 11 forks source link

Rename identifiers which shadows a builtin attribute #162

Closed vdusek closed 7 months ago

vdusek commented 9 months ago

Rename identifiers flagged with # noqa: A003 for built-in attribute shadowing.

In the case of methods named list, it even breaks mypy in some places. If you use the list type hint in the same module, e.g. here - https://github.com/apify/apify-client-python/blob/master/src/apify_client/clients/resource_clients/actor_collection.py#L50.