mirror of
https://github.com/Kozea/Radicale.git
synced 2025-06-26 16:45:52 +00:00
This is very important
This commit is contained in:
parent
416f9ddef1
commit
c95437367f
1 changed files with 2 additions and 2 deletions
|
@ -321,7 +321,7 @@ class BaseCollection:
|
||||||
"""Upload a new item."""
|
"""Upload a new item."""
|
||||||
raise NotImplementedError
|
raise NotImplementedError
|
||||||
|
|
||||||
def upload_all(self, collections):
|
def upload_all(self, vobject_items):
|
||||||
"""Upload a new set of items.
|
"""Upload a new set of items.
|
||||||
|
|
||||||
This takes a mapping of href and vobject items and
|
This takes a mapping of href and vobject items and
|
||||||
|
@ -331,7 +331,7 @@ class BaseCollection:
|
||||||
"""
|
"""
|
||||||
return [
|
return [
|
||||||
self.upload(href, vobject_item)
|
self.upload(href, vobject_item)
|
||||||
for href, vobject_item in collections.items()
|
for href, vobject_item in vobject_items.items()
|
||||||
]
|
]
|
||||||
|
|
||||||
def update(self, href, vobject_item):
|
def update(self, href, vobject_item):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue