소스 검색

fix a bug in metadata path constructor

Christian Mönch 3 년 전
부모
커밋
d474da0084
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      dataladmetadatamodel/metadatapath.py

+ 1 - 0
dataladmetadatamodel/metadatapath.py

@@ -8,6 +8,7 @@ class MetadataPath(PurePosixPath):
         args = [
             arg.replace("\\", "/")
             for arg in args
+            if isinstance(arg, str)
         ]
         original_path = PurePosixPath(*args)
         if not original_path.is_absolute():