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
I spent some time trying to resolve these but it felt like fighting a hydra. At this point they are ignored with either # type: ignore[no-untyped-call], # type: ignore[no-untyped-call], or # type: ignore[attr-defined]
Here is the current list of errors:
staking_deposit/utils/ssz.py:42: error: Call to untyped function "ForkData" in typed context [no-untyped-call]
staking_deposit/utils/ssz.py:86: error: Call to untyped function "SigningData" in typed context [no-untyped-call]
staking_deposit/credentials.py:118: error: Call to untyped function "DepositMessage" in typed context [no-untyped-call]
staking_deposit/credentials.py:128: error: Call to untyped function "DepositData" in typed context [no-untyped-call]
staking_deposit/credentials.py:129: error: Call to untyped function "as_dict" in typed context [no-untyped-call]
staking_deposit/credentials.py:141: error: Call to untyped function "as_dict" in typed context [no-untyped-call]
staking_deposit/credentials.py:168: error: Call to untyped function "BLSToExecutionChange" in typed context [no-untyped-call]
staking_deposit/credentials.py:180: error: Call to untyped function "SignedBLSToExecutionChange" in typed context [no-untyped-call]
staking_deposit/credentials.py:189: error: "SignedBLSToExecutionChange" has no attribute "message" [attr-defined]
staking_deposit/credentials.py:190: error: "SignedBLSToExecutionChange" has no attribute "message" [attr-defined]
staking_deposit/credentials.py:191: error: "SignedBLSToExecutionChange" has no attribute "message" [attr-defined]
staking_deposit/credentials.py:194: error: "SignedBLSToExecutionChange" has no attribute "signature" [attr-defined]
staking_deposit/utils/validation.py:92: error: Call to untyped function "DepositMessage" in typed context [no-untyped-call]
staking_deposit/utils/validation.py:99: error: Call to untyped function "DepositData" in typed context [no-untyped-call]
staking_deposit/utils/validation.py:192: error: Call to untyped function "BLSToExecutionChange" in typed context [no-untyped-call]
The text was updated successfully, but these errors were encountered:
There are a number of mypy type checking errors that are a result from integration with https://github.com/ethereum/py-ssz/tree/main
I spent some time trying to resolve these but it felt like fighting a hydra. At this point they are ignored with either
# type: ignore[no-untyped-call]
,# type: ignore[no-untyped-call]
, or# type: ignore[attr-defined]
Here is the current list of errors:
The text was updated successfully, but these errors were encountered: