mirror of
https://github.com/Kozea/Radicale.git
synced 2025-06-26 16:45:52 +00:00
Fix imports
This commit is contained in:
parent
8318feacce
commit
39d6407ee5
9 changed files with 2 additions and 9 deletions
|
@ -27,7 +27,6 @@ from http import client
|
|||
from typing import Dict, Optional, cast
|
||||
|
||||
import defusedxml.ElementTree as DefusedET
|
||||
|
||||
import radicale.item as radicale_item
|
||||
from radicale import httputils, storage, types, xmlutils
|
||||
from radicale.app.base import Access, ApplicationBase
|
||||
|
|
|
@ -60,7 +60,6 @@ import time
|
|||
from typing import Any, Tuple
|
||||
|
||||
from passlib.hash import apr_md5_crypt, sha256_crypt, sha512_crypt
|
||||
|
||||
from radicale import auth, config, logger
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
import pika
|
||||
from pika.exceptions import ChannelWrongStateError, StreamLostError
|
||||
|
||||
from radicale import hook
|
||||
from radicale.hook import HookNotificationItem
|
||||
from radicale.log import logger
|
||||
|
|
|
@ -31,9 +31,9 @@ from io import BytesIO
|
|||
from typing import Any, Dict, List, Optional, Tuple, Union
|
||||
from urllib.parse import quote
|
||||
|
||||
import defusedxml.ElementTree as DefusedET
|
||||
import vobject
|
||||
|
||||
import defusedxml.ElementTree as DefusedET
|
||||
import radicale
|
||||
from radicale import app, config, types, xmlutils
|
||||
|
||||
|
|
|
@ -29,7 +29,6 @@ import sys
|
|||
from typing import Iterable, Tuple, Union
|
||||
|
||||
import pytest
|
||||
|
||||
from radicale import xmlutils
|
||||
from radicale.tests import BaseTest
|
||||
|
||||
|
|
|
@ -26,9 +26,9 @@ import os
|
|||
import posixpath
|
||||
from typing import Any, Callable, ClassVar, Iterable, List, Optional, Tuple
|
||||
|
||||
import defusedxml.ElementTree as DefusedET
|
||||
import vobject
|
||||
|
||||
import defusedxml.ElementTree as DefusedET
|
||||
from radicale import storage, xmlutils
|
||||
from radicale.tests import RESPONSES, BaseTest
|
||||
from radicale.tests.helpers import get_file_content
|
||||
|
|
|
@ -21,7 +21,6 @@ from configparser import RawConfigParser
|
|||
from typing import List, Tuple
|
||||
|
||||
import pytest
|
||||
|
||||
from radicale import config, types
|
||||
from radicale.tests.helpers import configuration_to_dict
|
||||
|
||||
|
|
|
@ -34,7 +34,6 @@ from urllib import request
|
|||
from urllib.error import HTTPError, URLError
|
||||
|
||||
import pytest
|
||||
|
||||
from radicale import config, server
|
||||
from radicale.tests import BaseTest
|
||||
from radicale.tests.helpers import configuration_to_dict, get_file_path
|
||||
|
|
|
@ -26,7 +26,6 @@ import shutil
|
|||
from typing import ClassVar, cast
|
||||
|
||||
import pytest
|
||||
|
||||
import radicale.tests.custom.storage_simple_sync
|
||||
from radicale.tests import BaseTest
|
||||
from radicale.tests.helpers import get_file_content
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue