Peter Bieringer 1 год назад
Родитель
Сommit
f7d6f6442f

+ 1 - 1
radicale/storage/multifilesystem/create_collection.py

@@ -23,9 +23,9 @@ from typing import Iterable, Optional, cast
 
 import radicale.item as radicale_item
 from radicale import pathutils
+from radicale.log import logger
 from radicale.storage import multifilesystem
 from radicale.storage.multifilesystem.base import StorageBase
-from radicale.log import logger
 
 
 class StoragePartCreateCollection(StorageBase):

+ 1 - 1
radicale/storage/multifilesystem/upload.py

@@ -25,11 +25,11 @@ from typing import Iterable, Iterator, TextIO, cast
 
 import radicale.item as radicale_item
 from radicale import pathutils
+from radicale.log import logger
 from radicale.storage.multifilesystem.base import CollectionBase
 from radicale.storage.multifilesystem.cache import CollectionPartCache
 from radicale.storage.multifilesystem.get import CollectionPartGet
 from radicale.storage.multifilesystem.history import CollectionPartHistory
-from radicale.log import logger
 
 
 class CollectionPartUpload(CollectionPartGet, CollectionPartCache,