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
This line transform_name: str | None = None found in utils.py works only for python 3.10+
transform_name: str | None = None
fix the typing to allow for older versions or create default conda environment to load (docker, etc. tu connais mieux que moi mdr)
The text was updated successfully, but these errors were encountered:
For retrocompatiblity we can use Optional from typing library with
Optional
typing
from typing import Optional ... transform_name: Optional[str] = None
But to be honest I don't care about peaple still using python older than 3.10 😂 I prefer by far the | union of python 3.10 than the Optional type
|
Sorry, something went wrong.
I can add a .devcontainer (see Create a Dev Container ), but this overkill for a such little project
For retrocompatiblity we can use Optional from typing library with from typing import Optional ... transform_name: Optional[str] = None But to be honest I don't care about peaple still using python older than 3.10 😂 I prefer by far the | union of python 3.10 than the Optional type
this is the perfect and only answer
I can try just for fun
julien-blanchon
No branches or pull requests
This line
transform_name: str | None = None
found in utils.pyworks only for python 3.10+
fix the typing to allow for older versions or create default conda environment to load (docker, etc. tu connais mieux que moi mdr)
The text was updated successfully, but these errors were encountered: