inline documentation correction

pull/314/head
Chris Caron 2020-10-11 11:14:09 -04:00
parent 53a8d046ce
commit 72786c3197
1 changed files with 2 additions and 3 deletions

View File

@ -344,7 +344,6 @@ class Apprise(object):
if body_format is None else body_format if body_format is None else body_format
# for asyncio support; we track a list of our servers to notify # for asyncio support; we track a list of our servers to notify
# sequentially
coroutines = [] coroutines = []
# Iterate over our loaded plugins # Iterate over our loaded plugins
@ -494,11 +493,11 @@ class Apprise(object):
return response return response
def urls(self): def urls(self, privacy=False):
""" """
Returns all of the loaded URLs defined in this apprise object. Returns all of the loaded URLs defined in this apprise object.
""" """
return [x.url() for x in self.servers] return [x.url(privacy=privacy) for x in self.servers]
def pop(self, index): def pop(self, index):
""" """