Skip to content

Commit 4f3d905

Browse files
committed
fix
1 parent 3541e06 commit 4f3d905

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

catalyst-python/src/catalyst_python/admin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ruff: noqa: D100, D102, D107, I001
1+
# ruff: noqa: D100, D101, D102, D107, I001
22

33
from catalyst_python.ed25519 import Ed25519Keys
44
from catalyst_python.rbac_token import (
@@ -8,7 +8,7 @@
88

99

1010
class AdminKey:
11-
def __init__(self, key: Ed25519Keys, network: str, subnet: str):
11+
def __init__(self, key: Ed25519Keys, network: str, subnet: str) -> None:
1212
self.key = key
1313
self.network = network
1414
self.subnet = subnet

catalyst-python/src/catalyst_python/api/v1/cardano.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ruff: noqa: D100, D103, I001, S113
1+
# ruff: noqa: D100, D103, S113
22

33
import requests
44

0 commit comments

Comments
 (0)