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
pandas/_config/config.py:60: error: Need type annotation for'_deprecated_options'
pandas/_config/config.py:61: error: Need type annotation for'_registered_options'
pandas/_config/config.py:62: error: Need type annotation for'_global_config'
Should add annotations and remove this module from mypy.ini - think this is straightforward so community PR is certainly welcome!
The text was updated successfully, but these errors were encountered:
The problem with these three are that they already have a comment describing what these variables do. If I add type comment too the line becomes too long:
On Mar 28, 2019, at 7:15 AM, Vaibhav Vishal ***@***.***> wrote:
The problem with these three are that they already have a comment describing what these variables do. If I add type comment too the line becomes too long:
_deprecated_options = {} # type: Dict[str, str] # holds deprecated option metdata
How should I split it to multiple lines
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or mute the thread.
Part of #25882
Current errors are as follows:
Should add annotations and remove this module from mypy.ini - think this is straightforward so community PR is certainly welcome!
The text was updated successfully, but these errors were encountered: