We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82f7517 commit 3cfe01fCopy full SHA for 3cfe01f
cardano_clusterlib/consts.py
@@ -24,15 +24,15 @@ class CommandEras:
24
25
26
class Eras(enum.Enum):
27
- BYRON: int = 1
28
- SHELLEY: int = 2
29
- ALLEGRA: int = 3
30
- MARY: int = 4
31
- ALONZO: int = 6
32
- BABBAGE: int = 8
33
- CONWAY: int = 9
34
- DEFAULT: int = CONWAY
35
- LATEST: int = CONWAY
+ BYRON = 1
+ SHELLEY = 2
+ ALLEGRA = 3
+ MARY = 4
+ ALONZO = 6
+ BABBAGE = 8
+ CONWAY = 9
+ DEFAULT = CONWAY
+ LATEST = CONWAY # noqa: PIE796
36
37
38
class MultiSigTypeArgs:
@@ -55,6 +55,6 @@ class ScriptTypes:
55
56
57
class Votes(enum.Enum):
58
- YES: int = 1
59
- NO: int = 2
60
- ABSTAIN: int = 3
+ YES = 1
+ NO = 2
+ ABSTAIN = 3
0 commit comments