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
Using gitpython==3.1.44 and mypy==1.15.0, it shows the following message:
Argument of type "GitProgressPrinter" cannot be assigned to parameter "progress" of type "CallableProgress" in function "clone_from"
Type "GitProgressPrinter" is not assignable to type "CallableProgress"
Type "GitProgressPrinter" is not assignable to type "(int, str | float, str | float | None, str) -> None"
"GitProgressPrinter" is not assignable to "None"
Can you help me understand what's wrong here? Missing typing info on the gitpython side?
This discussion was converted from issue #2001 on February 08, 2025 15:12.
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi,
Consider the following example:
Using
gitpython==3.1.44
andmypy==1.15.0
, it shows the following message:Can you help me understand what's wrong here? Missing typing info on the gitpython side?
Beta Was this translation helpful? Give feedback.
All reactions