From 72786c3197a2c54b9b85e8ea810caaec334843d9 Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Sun, 11 Oct 2020 11:14:09 -0400 Subject: [PATCH] inline documentation correction --- apprise/Apprise.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/apprise/Apprise.py b/apprise/Apprise.py index 3ade1219..9759ef2f 100644 --- a/apprise/Apprise.py +++ b/apprise/Apprise.py @@ -344,7 +344,6 @@ class Apprise(object): if body_format is None else body_format # for asyncio support; we track a list of our servers to notify - # sequentially coroutines = [] # Iterate over our loaded plugins @@ -494,11 +493,11 @@ class Apprise(object): return response - def urls(self): + def urls(self, privacy=False): """ 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): """