File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed
smartystreets_python_sdk/us_enrichment Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -770,12 +770,9 @@ def get_secondary_aliases(secondary_aliases_obj):
770
770
if secondary_aliases_obj is None :
771
771
return None
772
772
output = []
773
- output_list = []
774
773
for item in secondary_aliases_obj :
775
774
output .append (SecondaryAliases (item ))
776
- output_list .append (output )
777
- output = []
778
- return output_list
775
+ return output
779
776
780
777
class SecondarySecondaries :
781
778
def __init__ (self , obj ):
@@ -800,12 +797,9 @@ def get_secondary_secondaries(secondary_secondaries_obj):
800
797
if secondary_secondaries_obj is None :
801
798
return None
802
799
output = []
803
- output_list = []
804
800
for item in secondary_secondaries_obj :
805
801
output .append (SecondarySecondaries (item ))
806
- output_list .append (output )
807
- output = []
808
- return output_list
802
+ return output
809
803
810
804
class SecondaryCountAttributes :
811
805
def __init__ (self , obj ):
You can’t perform that action at this time.
0 commit comments