@@ -61,7 +61,7 @@ def __init__(
61
61
endpoints : Optional [Iterable [XsUri ]] = None ,
62
62
authenticated : Optional [bool ] = None ,
63
63
x_trust_boundary : Optional [bool ] = None ,
64
- data : Optional [Iterable [DataClassification ]] = None ,
64
+ data : Optional [Iterable ['Data' ]] = None ,
65
65
licenses : Optional [Iterable [License ]] = None ,
66
66
external_references : Optional [Iterable [ExternalReference ]] = None ,
67
67
properties : Optional [Iterable [Property ]] = None ,
@@ -626,12 +626,12 @@ def destination(self, destination: Optional[Iterable[Union[BomRef, XsUri]]]) ->
626
626
self ._destination = destination
627
627
628
628
def __eq__ (self , other : object ) -> bool :
629
- if isinstance (other , DataClassification ):
629
+ if isinstance (other , Data ):
630
630
return hash (other ) == hash (self )
631
631
return False
632
632
633
633
def __lt__ (self , other : object ) -> bool :
634
- if isinstance (other , DataClassification ):
634
+ if isinstance (other , Data ):
635
635
return _ComparableTuple ((
636
636
self .flow , self .classification
637
637
)) < _ComparableTuple ((
0 commit comments