Skip to content

Commit a3b96ee

Browse files
authored
Merge pull request #850 from secure-systems-lab/dependabot/pip/test-and-lint-dependencies-fd734e5e0e
Bump the test-and-lint-dependencies group with 2 updates
2 parents 9163e19 + 92145cd commit a3b96ee

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

requirements-lint.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
mypy==1.10.1
2-
ruff==0.5.2
1+
mypy==1.11.0
2+
ruff==0.5.4

securesystemslib/signer/_key.py

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

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

204-
def __init__( # noqa: PLR0913
204+
def __init__(
205205
self,
206206
keyid: str,
207207
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)