Skip to content

Commit 5c8a866

Browse files
committed
Fix small pylint error
Signed-off-by: Martin Vrachev <[email protected]>
1 parent ed8a06b commit 5c8a866

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tuf/api/metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ def __init__(
539539
):
540540
if not all(
541541
isinstance(at, str) for at in [keyid, keytype, scheme]
542-
) or not isinstance(keyval, Dict):
542+
) or not isinstance(keyval, dict):
543543
raise TypeError("Unexpected Key attributes types!")
544544
self.keyid = keyid
545545
self.keytype = keytype

0 commit comments

Comments
 (0)