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.attrs is type-hinted as dict[str, str] as expected. However, Tag.__getitem__() is type hinted as returning str | list[str], and Tag.get() is type hinted as returning str | list[str] | None. Why is that the case?