mirror of https://github.com/caronc/apprise
inline documentation correction
parent
53a8d046ce
commit
72786c3197
|
@ -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):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue