Remove extra spaces

This commit is contained in:
Jasmine Schladen 2021-02-17 15:10:15 -08:00
parent da9e949e89
commit 360e4c6154
1 changed files with 3 additions and 3 deletions

View File

@ -94,7 +94,7 @@ def create(label, plugin_name, options, description, certificates):
:param options: :param options:
:param description: :param description:
:param certificates: :param certificates:
:rtype : Notification :rtype: Notification
:return: :return:
""" """
notification = Notification( notification = Notification(
@ -115,7 +115,7 @@ def update(notification_id, label, plugin_name, options, description, active, ce
:param description: :param description:
:param active: :param active:
:param certificates: :param certificates:
:rtype : Notification :rtype: Notification
:return: :return:
""" """
notification = get(notification_id) notification = get(notification_id)
@ -144,7 +144,7 @@ def get(notification_id):
Retrieves an notification by its lemur assigned ID. Retrieves an notification by its lemur assigned ID.
:param notification_id: Lemur assigned ID :param notification_id: Lemur assigned ID
:rtype : Notification :rtype: Notification
:return: :return:
""" """
return database.get(Notification, notification_id) return database.get(Notification, notification_id)