Browse Source

tidying up some inline documentation

pull/201/head
Chris Caron 5 years ago
parent
commit
f41a669814
  1. 2
      apprise/plugins/NotifyD7Networks.py
  2. 4
      apprise/plugins/NotifyGitter.py
  3. 2
      apprise/plugins/NotifyMailgun.py
  4. 2
      apprise/plugins/NotifySinch.py
  5. 2
      apprise/plugins/NotifyTwilio.py

2
apprise/plugins/NotifyD7Networks.py

@ -86,7 +86,7 @@ class NotifyD7Networks(NotifyBase):
# The services URL
service_url = 'https://d7networks.com/'
# All pushover requests are secure
# All notification requests are secure
secure_protocol = 'd7sms'
# Allow 300 requests per minute.

4
apprise/plugins/NotifyGitter.py

@ -71,7 +71,7 @@ class NotifyGitter(NotifyBase):
# The services URL
service_url = 'https://gitter.im/'
# All pushover requests are secure
# All notification requests are secure
secure_protocol = 'gitter'
# A URL that takes you to the setup/help of the specific protocol
@ -102,7 +102,7 @@ class NotifyGitter(NotifyBase):
# Define object templates
templates = (
'{schema}://{token}:{targets}/',
'{schema}://{token}/{targets}/',
)
# Define our template tokens

2
apprise/plugins/NotifyMailgun.py

@ -101,7 +101,7 @@ class NotifyMailgun(NotifyBase):
# The services URL
service_url = 'https://www.mailgun.com/'
# All pushover requests are secure
# All notification requests are secure
secure_protocol = 'mailgun'
# Mailgun advertises they allow 300 requests per minute.

2
apprise/plugins/NotifySinch.py

@ -73,7 +73,7 @@ class NotifySinch(NotifyBase):
# The services URL
service_url = 'https://sinch.com/'
# All pushover requests are secure
# All notification requests are secure
secure_protocol = 'sinch'
# Allow 300 requests per minute.

2
apprise/plugins/NotifyTwilio.py

@ -67,7 +67,7 @@ class NotifyTwilio(NotifyBase):
# The services URL
service_url = 'https://www.twilio.com/'
# All pushover requests are secure
# All notification requests are secure
secure_protocol = 'twilio'
# Allow 300 requests per minute.

Loading…
Cancel
Save