From f7d6f6442f40699636f964a346b132a16dac71b1 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Sat, 14 Dec 2024 17:02:31 +0100 Subject: [PATCH] make tox happy --- radicale/storage/multifilesystem/create_collection.py | 2 +- radicale/storage/multifilesystem/upload.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/radicale/storage/multifilesystem/create_collection.py b/radicale/storage/multifilesystem/create_collection.py index 4d8c7be8..2e6e9ce7 100644 --- a/radicale/storage/multifilesystem/create_collection.py +++ b/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): diff --git a/radicale/storage/multifilesystem/upload.py b/radicale/storage/multifilesystem/upload.py index 3ce0f4ab..e9783e85 100644 --- a/radicale/storage/multifilesystem/upload.py +++ b/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,