aiocogeo
aiocogeo copied to clipboard
fix tag value type divergence
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.
This is also kind of related to #13