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
I suggest we replace our existing checking for types with things like is_data_type_supported with this library. We can also see if we want to runtime check every function/class. It would be nice to handle expected behavior through these type checks rather than through explicit checks coded by us.
The text was updated successfully, but these errors were encountered:
🚀 Feature Request
I came across this nice library: https://typeguard.readthedocs.io/en/stable/userguide.html
It lets us dynamically type-check for specific functions and modules or call them as needed.
I suggest we replace our existing checking for types with things like
is_data_type_supported
with this library. We can also see if we want to runtime check every function/class. It would be nice to handle expected behavior through these type checks rather than through explicit checks coded by us.The text was updated successfully, but these errors were encountered: