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
It is not really good practice to use import *, in places where you don't specifically need it, https://peps.python.org/pep-0008/#imports
import *
You don't need to import each key/value pair as a single variable from each module everywhere, I would suggest to refactor those in a type of Python data structure. It can be a simple dict, but also a dataclass https://docs.python.org/3.10/library/dataclasses.html?highlight=dataclasses or enum https://docs.python.org/3.10/library/enum.html?highlight=strenum
dict
dataclass
enum
The text was updated successfully, but these errors were encountered:
refactored most import statements, still to do for MaRDI Portal Item / Property Ids
Sorry, something went wrong.
No branches or pull requests
It is not really good practice to use
import *
, in places where you don't specifically need it, https://peps.python.org/pep-0008/#importsYou don't need to import each key/value pair as a single variable from each module everywhere, I would suggest to refactor those in a type of Python data structure. It can be a simple
dict
, but also adataclass
https://docs.python.org/3.10/library/dataclasses.html?highlight=dataclasses orenum
https://docs.python.org/3.10/library/enum.html?highlight=strenumThe text was updated successfully, but these errors were encountered: