You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some of our dependencies do not direclty include type hints. We currently ignore them in mypy.
We could install the type stubs (scipy, h5py, pydicom) if available.
We those not available (ismrmrd, pypulseq), we could generate our own stubs (using genstubs and some manual fixing) and put them in a stubs directory.
This would allow mypy to check if our code uses these functions correctly. currently, mypy assumes everything from these libraries to be Any and does not check anything.
The text was updated successfully, but these errors were encountered:
Some of our dependencies do not direclty include type hints. We currently ignore them in mypy.
We could install the type stubs (scipy, h5py, pydicom) if available.
We those not available (ismrmrd, pypulseq), we could generate our own stubs (using genstubs and some manual fixing) and put them in a stubs directory.
This would allow mypy to check if our code uses these functions correctly. currently, mypy assumes everything from these libraries to be Any and does not check anything.
The text was updated successfully, but these errors were encountered: