Remove extra spaces
This commit is contained in:
parent
00c64ba52f
commit
da9e949e89
|
@ -21,7 +21,7 @@ def create(label, plugin_name, options, description=None):
|
||||||
|
|
||||||
:param label: Destination common name
|
:param label: Destination common name
|
||||||
:param description:
|
:param description:
|
||||||
:rtype : Destination
|
:rtype: Destination
|
||||||
:return: New destination
|
:return: New destination
|
||||||
"""
|
"""
|
||||||
# remove any sub-plugin objects before try to save the json options
|
# remove any sub-plugin objects before try to save the json options
|
||||||
|
@ -50,7 +50,7 @@ def update(destination_id, label, plugin_name, options, description):
|
||||||
:param plugin_name:
|
:param plugin_name:
|
||||||
:param options:
|
:param options:
|
||||||
:param description:
|
:param description:
|
||||||
:rtype : Destination
|
:rtype: Destination
|
||||||
:return:
|
:return:
|
||||||
"""
|
"""
|
||||||
destination = get(destination_id)
|
destination = get(destination_id)
|
||||||
|
@ -81,7 +81,7 @@ def get(destination_id):
|
||||||
Retrieves an destination by its lemur assigned ID.
|
Retrieves an destination by its lemur assigned ID.
|
||||||
|
|
||||||
:param destination_id: Lemur assigned ID
|
:param destination_id: Lemur assigned ID
|
||||||
:rtype : Destination
|
:rtype: Destination
|
||||||
:return:
|
:return:
|
||||||
"""
|
"""
|
||||||
return database.get(Destination, destination_id)
|
return database.get(Destination, destination_id)
|
||||||
|
|
Loading…
Reference in New Issue