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
It would help to post the underlying problem as well. Is type checking failing where it shouldn't?
The runtime shouldn't be affected by the typing at all.
That said, if the typing gets better if the type is changed to something else, a PR is certainly welcome.
Hi, over here, https://github.com/gitpython-developers/GitPython/blob/main/git/repo/base.py#L1151 why is this
Union[TextIO, BinaryIO]
instead ofIO[bytes]
? As sending a temporaryfile or any file, is not inUnion[TextIO, BinaryIO]
and it is inIO[bytes]
The text was updated successfully, but these errors were encountered: