Skip to content

Commit a384200

Browse files
authored
style: justify import of non-explicitely exported (#910)
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent 80e2c2b commit a384200

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

cyclonedx_py/_internal/environment.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,11 @@
2828
from typing import TYPE_CHECKING, Any, Optional
2929

3030
from cyclonedx.model import Property
31-
from cyclonedx.model.component import Component, ComponentEvidence, ComponentType
31+
from cyclonedx.model.component import ( # type:ignore[attr-defined] # ComponentEvidence was moved, but is still importable - ignore/wont-fix for backwards compatibility # noqa:E501
32+
Component,
33+
ComponentEvidence,
34+
ComponentType,
35+
)
3236
from packageurl import PackageURL
3337
from packaging.requirements import Requirement
3438

0 commit comments

Comments
 (0)