Skip to content

Commit 3cfe01f

Browse files
committed
fix: linting fixes
1 parent 82f7517 commit 3cfe01f

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

cardano_clusterlib/consts.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ class CommandEras:
2424

2525

2626
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
27+
BYRON = 1
28+
SHELLEY = 2
29+
ALLEGRA = 3
30+
MARY = 4
31+
ALONZO = 6
32+
BABBAGE = 8
33+
CONWAY = 9
34+
DEFAULT = CONWAY
35+
LATEST = CONWAY # noqa: PIE796
3636

3737

3838
class MultiSigTypeArgs:
@@ -55,6 +55,6 @@ class ScriptTypes:
5555

5656

5757
class Votes(enum.Enum):
58-
YES: int = 1
59-
NO: int = 2
60-
ABSTAIN: int = 3
58+
YES = 1
59+
NO = 2
60+
ABSTAIN = 3

0 commit comments

Comments
 (0)