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
Tag values are currently typed as Union[Any, Tuple[Any]]. This causes lots of downstream issues because the type is unclear. It would make the code much cleaner if we removed the Union and only used a single type for tag values. This would also let us add mypy to pre-commit.
The text was updated successfully, but these errors were encountered:
Tag values are currently typed as
Union[Any, Tuple[Any]]
. This causes lots of downstream issues because the type is unclear. It would make the code much cleaner if we removed theUnion
and only used a single type for tag values. This would also let us add mypy to pre-commit.The text was updated successfully, but these errors were encountered: