Skip to content

Commit 92145cd

Browse files
committed
lint: Remove unused noqa comments
Signed-off-by: Jussi Kukkonen <[email protected]>
1 parent 5f033ff commit 92145cd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

securesystemslib/signer/_key.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ class Key(metaclass=ABCMeta):
8787
TypeError: Invalid type for an argument.
8888
"""
8989

90-
def __init__( # noqa: PLR0913
90+
def __init__(
9191
self,
9292
keyid: str,
9393
keytype: str,
@@ -200,7 +200,7 @@ def verify_signature(self, signature: Signature, data: bytes) -> None:
200200
class SSlibKey(Key):
201201
"""Key implementation for RSA, Ed25519, ECDSA keys"""
202202

203-
def __init__( # noqa: PLR0913
203+
def __init__(
204204
self,
205205
keyid: str,
206206
keytype: str,

securesystemslib/signer/_sigstore_signer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class SigstoreKey(Key):
3434
DEFAULT_KEY_TYPE = "sigstore-oidc"
3535
DEFAULT_SCHEME = "Fulcio"
3636

37-
def __init__( # noqa: PLR0913
37+
def __init__(
3838
self,
3939
keyid: str,
4040
keytype: str,

0 commit comments

Comments
 (0)