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
Fix py3.9 mypy error in __init__ around PackageMetadata
On Python 3.9 ``importlib_metadata`` returns Optional[PackageMetadata]
instead of PackageMetadata, this leads to mypy complaining that
Optional[...] is not indexable and does not have ``get_all``. Instead,
let's just cast it for ourselves.
0 commit comments