Error.signature
Returns the signature of the error.
property
signature :
str
Query Example
from glider import *
def query():
contracts = Contracts().exec(1, 1336)
for contract in contracts:
for error in contract.errors().exec():
print(error.signature)
return []
Example Output
[
{
"print_output": [
"OnlySimulatedBackend()"
]
}
]
Last updated