Skip to content

Commit 8ba0883

Browse files
committed
fix
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent 26dc1cf commit 8ba0883

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
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') # noqa:N808 -- false positive
43+
_SV = TypeVar('_SV', bound='SchemaVersion')
4444

4545

4646
@unique

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ flake8-copyright-validator = "0.0.1"
9090
flake8-isort = "6.1.2"
9191
flake8-quotes = "3.4.0"
9292
flake8-use-fstring = "1.4"
93-
pep8-naming = "0.15.0"
93+
pep8-naming = "0.15.1"
9494
isort = "6.0.1"
9595
autopep8 = "2.3.2"
9696
mypy = "1.15.0"

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') # noqa:N808 -- false positive
35+
_T = TypeVar('_T')
3636

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

0 commit comments

Comments
 (0)