-
Notifications
You must be signed in to change notification settings - Fork 9
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
WIP: Feature/Add_typehints and guarnieri stubs #1063
base: main
Are you sure you want to change the base?
Conversation
@@ -10,8 +10,9 @@ | |||
|
|||
import datetime | |||
import logging | |||
import pathlib | |||
from typing import Any, Dict, List, Optional, Union |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there an advantage to use typing.Dict[str, str]
when dict[str, str]
passes linting and testing? Same for typing.List
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think there is any effect difference here. Here is why I started using typing as default:
https://stackoverflow.com/questions/37087457/difference-between-defining-typing-dict-and-dict
_file_name = None | ||
_file_path = None | ||
file_extension: str = "dat" | ||
_file_name: Optional[pathlib.Path] = None |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For both of these, is Optional[Union[pathlib.Path,str]]
acceptable? I think so. Check the unit testing to see if both ways are tested.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated. Checking the tests soon.
No description provided.