We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In the TriangleBase class there is a method called _to_datetime that has an argument called format:
_to_datetime
format
@staticmethod def _to_datetime(data, fields, period_end=False, format=None):
I'm getting a warning from my IDE that format shadows a built-in name in Python. I propose that we rename it to something else, maybe datetime_format.
The text was updated successfully, but these errors were encountered:
jbogaardt
No branches or pull requests
In the TriangleBase class there is a method called
_to_datetime
that has an argument calledformat
:I'm getting a warning from my IDE that
format
shadows a built-in name in Python. I propose that we rename it to something else, maybe datetime_format.The text was updated successfully, but these errors were encountered: