mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 21:57:43 +03:00
learn to make tox happy
This commit is contained in:
parent
b24eae8369
commit
a72964ab3f
4 changed files with 8 additions and 9 deletions
|
@ -21,8 +21,8 @@ import sys
|
||||||
import xml.etree.ElementTree as ET
|
import xml.etree.ElementTree as ET
|
||||||
from typing import Optional
|
from typing import Optional
|
||||||
|
|
||||||
from radicale import (auth, hook, config, httputils, pathutils, rights, storage,
|
from radicale import (auth, config, hook, httputils, pathutils, rights,
|
||||||
types, web, xmlutils)
|
storage, types, web, xmlutils)
|
||||||
from radicale.log import logger
|
from radicale.log import logger
|
||||||
|
|
||||||
# HACK: https://github.com/tiran/defusedxml/issues/54
|
# HACK: https://github.com/tiran/defusedxml/issues/54
|
||||||
|
|
|
@ -91,7 +91,7 @@ class ApplicationPartDelete(ApplicationBase):
|
||||||
)
|
)
|
||||||
xml_answer = xml_delete(
|
xml_answer = xml_delete(
|
||||||
base_prefix, path, item.collection, item.href)
|
base_prefix, path, item.collection, item.href)
|
||||||
for i in hook_notification_item_list:
|
for notification_item in hook_notification_item_list:
|
||||||
self._hook.notify(i)
|
self._hook.notify(notification_item)
|
||||||
headers = {"Content-Type": "text/xml; charset=%s" % self._encoding}
|
headers = {"Content-Type": "text/xml; charset=%s" % self._encoding}
|
||||||
return client.OK, headers, self._xml_response(xml_answer)
|
return client.OK, headers, self._xml_response(xml_answer)
|
||||||
|
|
|
@ -22,16 +22,14 @@ import xml.etree.ElementTree as ET
|
||||||
from http import client
|
from http import client
|
||||||
from typing import Dict, Optional, cast
|
from typing import Dict, Optional, cast
|
||||||
|
|
||||||
|
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
|
||||||
from radicale.hook import HookNotificationItem, HookNotificationItemTypes
|
from radicale.hook import HookNotificationItem, HookNotificationItemTypes
|
||||||
from radicale.log import logger
|
from radicale.log import logger
|
||||||
|
|
||||||
# HACK: https://github.com/tiran/defusedxml/issues/54
|
|
||||||
import defusedxml.ElementTree as DefusedET # isort:skip
|
|
||||||
sys.modules["xml.etree"].ElementTree = ET # type:ignore[attr-defined]
|
|
||||||
|
|
||||||
|
|
||||||
def xml_proppatch(base_prefix: str, path: str,
|
def xml_proppatch(base_prefix: str, path: str,
|
||||||
xml_request: Optional[ET.Element],
|
xml_request: Optional[ET.Element],
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
import json
|
import json
|
||||||
from enum import Enum
|
from enum import Enum
|
||||||
|
from typing import Sequence
|
||||||
|
|
||||||
from radicale import pathutils, utils
|
from radicale import pathutils, utils
|
||||||
|
|
||||||
INTERNAL_TYPES = ("none", "rabbitmq")
|
INTERNAL_TYPES: Sequence[str] = ("none", "rabbitmq")
|
||||||
|
|
||||||
|
|
||||||
def load(configuration):
|
def load(configuration):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue