Skip to content

Commit d17acca

Browse files
committed
lint: Exclude hash module from linting
Plan is to deprecate hash soon. Signed-off-by: Jussi Kukkonen <[email protected]>
1 parent 2883df9 commit d17acca

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,8 @@ show_error_codes = "True"
9999

100100
exclude = [
101101
"^securesystemslib/_vendor/",
102-
"^securesystemslib/_gpg/"
102+
"^securesystemslib/_gpg/",
103+
"^securesystemslib/hash.py",
103104
]
104105

105106
[[tool.mypy.overrides]]
@@ -122,5 +123,6 @@ ignore_missing_imports = "True"
122123
module = [
123124
"securesystemslib._gpg.*",
124125
"securesystemslib._vendor.*",
126+
"securesystemslib.hash",
125127
]
126128
follow_imports = "skip"

0 commit comments

Comments
 (0)