Skip to content
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

Draft
wants to merge 20 commits into
base: main
Choose a base branch
from

Conversation

ravescovi
Copy link
Collaborator

No description provided.

@@ -10,8 +10,9 @@

import datetime
import logging
import pathlib
from typing import Any, Dict, List, Optional, Union
Copy link
Contributor

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.

Copy link
Collaborator Author

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
Copy link
Contributor

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.

Copy link
Collaborator Author

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants