Skip to content

Commit 26dc1cf

Browse files
committed
annotate FP
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent 7e252eb commit 26dc1cf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cyclonedx/schema/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def __eq__(self, other: Any) -> bool:
4040
return self is other
4141

4242

43-
_SV = TypeVar('_SV', bound='SchemaVersion')
43+
_SV = TypeVar('_SV', bound='SchemaVersion') # noqa:N808 -- false positive
4444

4545

4646
@unique

tests/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
from cyclonedx.model.bom import Bom
3333
from cyclonedx.model.dependency import Dependency
3434

35-
_T = TypeVar('_T')
35+
_T = TypeVar('_T') # noqa:N808 -- false positive
3636

3737
_TESTDATA_DIRECTORY = path.join(path.dirname(__file__), '_data')
3838

0 commit comments

Comments
 (0)