@@ -61,7 +61,7 @@ def __init__(
6161 endpoints : Optional [Iterable [XsUri ]] = None ,
6262 authenticated : Optional [bool ] = None ,
6363 x_trust_boundary : Optional [bool ] = None ,
64- data : Optional [Iterable [DataClassification ]] = None ,
64+ data : Optional [Iterable ['Data' ]] = None ,
6565 licenses : Optional [Iterable [License ]] = None ,
6666 external_references : Optional [Iterable [ExternalReference ]] = None ,
6767 properties : Optional [Iterable [Property ]] = None ,
@@ -626,12 +626,12 @@ def destination(self, destination: Optional[Iterable[Union[BomRef, XsUri]]]) ->
626626 self ._destination = destination
627627
628628 def __eq__ (self , other : object ) -> bool :
629- if isinstance (other , DataClassification ):
629+ if isinstance (other , Data ):
630630 return hash (other ) == hash (self )
631631 return False
632632
633633 def __lt__ (self , other : object ) -> bool :
634- if isinstance (other , DataClassification ):
634+ if isinstance (other , Data ):
635635 return _ComparableTuple ((
636636 self .flow , self .classification
637637 )) < _ComparableTuple ((
0 commit comments