@@ -609,7 +609,7 @@ def test_embed_obj_skips_xsd_types(self):
609609
610610 all_existing_class = {"Person" : {"name" : "xsd:string" }}
611611
612- result = _embed_obj (df , 1 , pd , False , all_existing_class , "Person" , mock_client )
612+ _embed_obj (df , 1 , pd , False , all_existing_class , "Person" , mock_client )
613613
614614 # get_document should NOT have been called for xsd:string
615615 assert not mock_client .get_document .called
@@ -623,7 +623,7 @@ def test_embed_obj_skips_same_class(self):
623623
624624 all_existing_class = {"Person" : {"name" : "xsd:string" , "friend" : "Person" }}
625625
626- result = _embed_obj (df , 1 , pd , False , all_existing_class , "Person" , mock_client )
626+ _embed_obj (df , 1 , pd , False , all_existing_class , "Person" , mock_client )
627627
628628 # get_document should NOT have been called for same class reference
629629 assert not mock_client .get_document .called
@@ -640,7 +640,7 @@ def test_embed_obj_skips_enum_types(self):
640640 "Status" : {"@type" : "Enum" , "values" : ["ACTIVE" , "INACTIVE" ]},
641641 }
642642
643- result = _embed_obj (df , 1 , pd , False , all_existing_class , "Person" , mock_client )
643+ _embed_obj (df , 1 , pd , False , all_existing_class , "Person" , mock_client )
644644
645645 # get_document should NOT have been called for Enum type
646646 assert not mock_client .get_document .called
0 commit comments