Skip to content

Commit 384501b

Browse files
committed
Drop unused type ignore comment
1 parent 256ffd8 commit 384501b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pskc/scripts/csv2pskc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def from_column(key: str, value: str, secret_encoding: str) -> bytes | str | dat
8787
"""Convert a key value read from a CSV file in a format for PSKC."""
8888
# decode encoded secret
8989
if key == 'secret':
90-
return encodings[secret_encoding](value) # type: ignore[no-any-return,operator]
90+
return encodings[secret_encoding](value)
9191
# convert dates to timestamps
9292
if key.endswith('_date'):
9393
return dateutil.parser.parse(value)

0 commit comments

Comments
 (0)