Преглед на файлове

fix: linter error on incompatible super type

trgiangdo преди 1 година
родител
ревизия
e428d3b0a1
променени са 1 файла, в които са добавени 1 реда и са изтрити 6 реда
  1. 1 6
      taipy/core/data/_data_manager.py

+ 1 - 6
taipy/core/data/_data_manager.py

@@ -166,12 +166,7 @@ class _DataManager(_Manager[DataNode], _VersionMixin):
         return cls._repository._load_all(filters)
 
     @classmethod
-    def _export(
-        cls,
-        id: DataNodeId,
-        folder_path: Union[str, pathlib.Path],
-        **kwargs,
-    ):
+    def _export(cls, id: str, folder_path: Union[str, pathlib.Path], **kwargs):
         cls._repository._export(id, folder_path)
 
         if not kwargs.get("include_data"):