Skip to content

Commit 58553b1

Browse files
committed
docs
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent d3d1842 commit 58553b1

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

cyclonedx/serialization/__init__.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
Set of helper classes for use with ``serializable`` when conducting (de-)serialization.
2121
"""
2222

23+
import sys
2324
from typing import Any, Optional
2425
from uuid import UUID
2526

@@ -33,6 +34,10 @@
3334

3435

3536
class BomRefHelper(BaseHelper):
37+
"""
38+
DEPRECATED. use :class:`BomRef` instead.
39+
"""
40+
3641
# TODO: remove, no longer needed
3742

3843
@classmethod
@@ -83,5 +88,10 @@ def deserialize(cls, o: Any) -> UUID:
8388

8489

8590
class LicenseRepositoryHelper(_LicenseRepositorySerializationHelper):
91+
"""
92+
DEPRECATED. No public API planned for replacing this
93+
"""
94+
8695
# TODO: remove, no longer needed
96+
8797
pass

0 commit comments

Comments
 (0)