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
) leads to the following exception for repeated string fields.
I'm getting this error in Exonum launcher for the config field:
exonum_launcher.instances.instance_spec_loader.InstanceSpecLoadError: Couldn't get a proto description for artifact: dit-votings-service, error: '<=' not supported between instances of 'int' and 'str'
I would suggest changing the lambda in the following way:
all(map(lambda x: 0 <= x <= 255 if isinstance(x, int) else False, value))
The text was updated successfully, but these errors were encountered:
This piece of code (
exonum-python-client/exonum_client/proofs/encoder.py
Line 21 in 723fe8e
I'm getting this error in Exonum launcher for the config field:
I would suggest changing the lambda in the following way:
The text was updated successfully, but these errors were encountered: