1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-06-26 16:45:52 +00:00

Fix imports

This commit is contained in:
Dipl. Ing. Péter Varkoly 2025-05-31 13:38:34 +02:00
parent 8318feacce
commit 39d6407ee5
9 changed files with 2 additions and 9 deletions

View file

@ -27,7 +27,6 @@ from http import client
from typing import Dict, Optional, cast from typing import Dict, Optional, cast
import defusedxml.ElementTree as DefusedET import defusedxml.ElementTree as DefusedET
import radicale.item as radicale_item import radicale.item as radicale_item
from radicale import httputils, storage, types, xmlutils from radicale import httputils, storage, types, xmlutils
from radicale.app.base import Access, ApplicationBase from radicale.app.base import Access, ApplicationBase

View file

@ -60,7 +60,6 @@ import time
from typing import Any, Tuple from typing import Any, Tuple
from passlib.hash import apr_md5_crypt, sha256_crypt, sha512_crypt from passlib.hash import apr_md5_crypt, sha256_crypt, sha512_crypt
from radicale import auth, config, logger from radicale import auth, config, logger

View file

@ -1,6 +1,5 @@
import pika import pika
from pika.exceptions import ChannelWrongStateError, StreamLostError from pika.exceptions import ChannelWrongStateError, StreamLostError
from radicale import hook from radicale import hook
from radicale.hook import HookNotificationItem from radicale.hook import HookNotificationItem
from radicale.log import logger from radicale.log import logger

View file

@ -31,9 +31,9 @@ from io import BytesIO
from typing import Any, Dict, List, Optional, Tuple, Union from typing import Any, Dict, List, Optional, Tuple, Union
from urllib.parse import quote from urllib.parse import quote
import defusedxml.ElementTree as DefusedET
import vobject import vobject
import defusedxml.ElementTree as DefusedET
import radicale import radicale
from radicale import app, config, types, xmlutils from radicale import app, config, types, xmlutils

View file

@ -29,7 +29,6 @@ import sys
from typing import Iterable, Tuple, Union from typing import Iterable, Tuple, Union
import pytest import pytest
from radicale import xmlutils from radicale import xmlutils
from radicale.tests import BaseTest from radicale.tests import BaseTest

View file

@ -26,9 +26,9 @@ import os
import posixpath import posixpath
from typing import Any, Callable, ClassVar, Iterable, List, Optional, Tuple from typing import Any, Callable, ClassVar, Iterable, List, Optional, Tuple
import defusedxml.ElementTree as DefusedET
import vobject import vobject
import defusedxml.ElementTree as DefusedET
from radicale import storage, xmlutils from radicale import storage, xmlutils
from radicale.tests import RESPONSES, BaseTest from radicale.tests import RESPONSES, BaseTest
from radicale.tests.helpers import get_file_content from radicale.tests.helpers import get_file_content

View file

@ -21,7 +21,6 @@ from configparser import RawConfigParser
from typing import List, Tuple from typing import List, Tuple
import pytest import pytest
from radicale import config, types from radicale import config, types
from radicale.tests.helpers import configuration_to_dict from radicale.tests.helpers import configuration_to_dict

View file

@ -34,7 +34,6 @@ from urllib import request
from urllib.error import HTTPError, URLError from urllib.error import HTTPError, URLError
import pytest import pytest
from radicale import config, server from radicale import config, server
from radicale.tests import BaseTest from radicale.tests import BaseTest
from radicale.tests.helpers import configuration_to_dict, get_file_path from radicale.tests.helpers import configuration_to_dict, get_file_path

View file

@ -26,7 +26,6 @@ import shutil
from typing import ClassVar, cast from typing import ClassVar, cast
import pytest import pytest
import radicale.tests.custom.storage_simple_sync import radicale.tests.custom.storage_simple_sync
from radicale.tests import BaseTest from radicale.tests import BaseTest
from radicale.tests.helpers import get_file_content from radicale.tests.helpers import get_file_content