@@ -259,10 +259,10 @@ def _clone(
259259 == cast (DictionaryObject , src [k ]).get ("/Type" , None )
260260 )
261261 ):
262- cur_obj : Optional [" DictionaryObject" ] = cast (
262+ cur_obj : Optional [DictionaryObject ] = cast (
263263 "DictionaryObject" , src [k ]
264264 )
265- prev_obj : Optional [" DictionaryObject" ] = self
265+ prev_obj : Optional [DictionaryObject ] = self
266266 while cur_obj is not None :
267267 clon = cast (
268268 "DictionaryObject" ,
@@ -786,7 +786,7 @@ def _reset_node_tree_relationship(child_obj: Any) -> None:
786786class StreamObject (DictionaryObject ):
787787 def __init__ (self ) -> None :
788788 self .__data : Optional [str ] = None
789- self .decoded_self : Optional [" DecodedStreamObject" ] = None
789+ self .decoded_self : Optional [DecodedStreamObject ] = None
790790
791791 def _clone (
792792 self ,
@@ -865,7 +865,7 @@ def initializeFromDictionary(
865865 def initialize_from_dictionary (
866866 data : Dict [str , Any ]
867867 ) -> Union ["EncodedStreamObject" , "DecodedStreamObject" ]:
868- retval : Union [" EncodedStreamObject" , " DecodedStreamObject" ]
868+ retval : Union [EncodedStreamObject , DecodedStreamObject ]
869869 if SA .FILTER in data :
870870 retval = EncodedStreamObject ()
871871 else :
@@ -931,7 +931,7 @@ def setData(self, data: Any) -> None: # deprecated
931931
932932class EncodedStreamObject (StreamObject ):
933933 def __init__ (self ) -> None :
934- self .decoded_self : Optional [" DecodedStreamObject" ] = None
934+ self .decoded_self : Optional [DecodedStreamObject ] = None
935935
936936 @property
937937 def decodedSelf (self ) -> Optional ["DecodedStreamObject" ]: # deprecated
0 commit comments