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
chore(typing): ignore pyright argument type report
pyright reports the following, which we consider safe to ignore and
easier than retyping 'whence' and unravelling a whole lot of subsequent
typing issues.
/home/runner/work/unblob/unblob/python/unblob/file_utils.py:73:31 -
error: Argument of type "int" cannot be assigned to parameter "whence"
of type "Literal[0, 1, 2, 3, 4]" in function "seek"
Type "int" is not assignable to type "Literal[0, 1, 2, 3, 4]"
"int" is not assignable to type "Literal[0]"
"int" is not assignable to type "Literal[1]"
"int" is not assignable to type "Literal[2]"
"int" is not assignable to type "Literal[3]"
"int" is not assignable to type "Literal[4]" (reportArgumentType)
0 commit comments