소스 검색

Add catch if statement in _make_flattened_list_of_distincts

ogert 4 년 전
부모
커밋
ac254e3c35
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      cdplib/db_migration/DataFrameToCollection.py

+ 5 - 1
cdplib/db_migration/DataFrameToCollection.py

@@ -310,8 +310,12 @@ class DataFrameToCollection():
          entries are arbitrary objects
          (pandas unique() method does not work if entries are of complex types)
         '''
+        
         uniques = self._make_list_of_distinct(x)
-        return uniques[0]
+        if len(uniques) > 0:
+            return uniques[0]
+        else:
+            return None
 
     def _unroll_nested_names(self, names: list) -> list:
         '''