Remove extra spaces
This commit is contained in:
parent
da9e949e89
commit
360e4c6154
|
@ -94,7 +94,7 @@ def create(label, plugin_name, options, description, certificates):
|
|||
:param options:
|
||||
:param description:
|
||||
:param certificates:
|
||||
:rtype : Notification
|
||||
:rtype: Notification
|
||||
:return:
|
||||
"""
|
||||
notification = Notification(
|
||||
|
@ -115,7 +115,7 @@ def update(notification_id, label, plugin_name, options, description, active, ce
|
|||
:param description:
|
||||
:param active:
|
||||
:param certificates:
|
||||
:rtype : Notification
|
||||
:rtype: Notification
|
||||
:return:
|
||||
"""
|
||||
notification = get(notification_id)
|
||||
|
@ -144,7 +144,7 @@ def get(notification_id):
|
|||
Retrieves an notification by its lemur assigned ID.
|
||||
|
||||
:param notification_id: Lemur assigned ID
|
||||
:rtype : Notification
|
||||
:rtype: Notification
|
||||
:return:
|
||||
"""
|
||||
return database.get(Notification, notification_id)
|
||||
|
|
Loading…
Reference in New Issue