From 0b3e4204a55e30bc48b76479c9d82c100d6ab0cd Mon Sep 17 00:00:00 2001 From: Unrud Date: Sun, 4 Oct 2020 10:14:57 +0200 Subject: [PATCH] Cosmetics --- radicale/app/__init__.py | 2 +- radicale/app/delete.py | 2 +- radicale/app/propfind.py | 2 +- radicale/app/proppatch.py | 2 +- radicale/app/report.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/radicale/app/__init__.py b/radicale/app/__init__.py index 564a45b..3e95d8f 100644 --- a/radicale/app/__init__.py +++ b/radicale/app/__init__.py @@ -33,9 +33,9 @@ import posixpath import pprint import random import time +import xml.etree.ElementTree as ET import zlib from http import client -from xml.etree import ElementTree as ET import defusedxml.ElementTree as DefusedET import pkg_resources diff --git a/radicale/app/delete.py b/radicale/app/delete.py index df587a5..05437c8 100644 --- a/radicale/app/delete.py +++ b/radicale/app/delete.py @@ -17,8 +17,8 @@ # You should have received a copy of the GNU General Public License # along with Radicale. If not, see . +import xml.etree.ElementTree as ET from http import client -from xml.etree import ElementTree as ET from radicale import app, httputils, storage, xmlutils diff --git a/radicale/app/propfind.py b/radicale/app/propfind.py index cacbed9..55ca2d3 100644 --- a/radicale/app/propfind.py +++ b/radicale/app/propfind.py @@ -21,8 +21,8 @@ import collections import itertools import posixpath import socket +import xml.etree.ElementTree as ET from http import client -from xml.etree import ElementTree as ET from radicale import app, httputils, pathutils, rights, storage, xmlutils from radicale.log import logger diff --git a/radicale/app/proppatch.py b/radicale/app/proppatch.py index a77228f..38804dd 100644 --- a/radicale/app/proppatch.py +++ b/radicale/app/proppatch.py @@ -19,8 +19,8 @@ import contextlib import socket +import xml.etree.ElementTree as ET from http import client -from xml.etree import ElementTree as ET from radicale import app, httputils from radicale import item as radicale_item diff --git a/radicale/app/report.py b/radicale/app/report.py index 99cd01a..0c35783 100644 --- a/radicale/app/report.py +++ b/radicale/app/report.py @@ -20,9 +20,9 @@ import contextlib import posixpath import socket +import xml.etree.ElementTree as ET from http import client from urllib.parse import unquote, urlparse -from xml.etree import ElementTree as ET from radicale import app, httputils, pathutils, storage, xmlutils from radicale.item import filter as radicale_filter