mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-06 06:37:36 +03:00
Remove pylint
This commit is contained in:
parent
301bb552d7
commit
3e52f34309
5 changed files with 2 additions and 257 deletions
|
@ -71,11 +71,8 @@ def _pretty_xml(element, level=0):
|
|||
element.tail = i
|
||||
for sub_element in element:
|
||||
_pretty_xml(sub_element, level + 1)
|
||||
# ``sub_element`` is always defined as len(element) > 0
|
||||
# pylint: disable=W0631
|
||||
if not sub_element.tail or not sub_element.tail.strip():
|
||||
sub_element.tail = i
|
||||
# pylint: enable=W0631
|
||||
else:
|
||||
if level and (not element.tail or not element.tail.strip()):
|
||||
element.tail = i
|
||||
|
@ -604,8 +601,6 @@ def _propfind_response(path, item, props, user, write=False):
|
|||
tag.text = _href(collection, path)
|
||||
element.append(tag)
|
||||
elif tag == _tag("C", "supported-calendar-component-set"):
|
||||
# This is not a Todo
|
||||
# pylint: disable=W0511
|
||||
human_tag = _tag_from_clark(tag)
|
||||
if is_collection and is_leaf:
|
||||
meta = item.get_meta(human_tag)
|
||||
|
@ -619,7 +614,6 @@ def _propfind_response(path, item, props, user, write=False):
|
|||
element.append(comp)
|
||||
else:
|
||||
is404 = True
|
||||
# pylint: enable=W0511
|
||||
elif tag == _tag("D", "current-user-principal") and user:
|
||||
tag = ET.Element(_tag("D", "href"))
|
||||
tag.text = _href(collection, "/%s/" % user)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue