1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Remove unused quotes - notification/pushbullet.py (#19149)

This commit is contained in:
Fabio Alessandro Locati 2016-12-10 15:29:02 +01:00 committed by John R Barker
parent c3887138c5
commit 2adde7a6d1

View file

@ -77,24 +77,24 @@ EXAMPLES = '''
# Sends a link to a device # Sends a link to a device
- pushbullet: - pushbullet:
api_key: "ABC123abc123ABC123abc123ABC123ab" api_key: ABC123abc123ABC123abc123ABC123ab
device: "Chrome" device: Chrome
push_type: "link" push_type: link
title: "Ansible Documentation" title: Ansible Documentation
body: "http://docs.ansible.com/" body: http://docs.ansible.com/
# Sends a push notification to a channel # Sends a push notification to a channel
- pushbullet: - pushbullet:
api_key: "ABC123abc123ABC123abc123ABC123ab" api_key: ABC123abc123ABC123abc123ABC123ab
channel: "my-awesome-channel" channel: my-awesome-channel
title: "Broadcasting a message to the #my-awesome-channel folks" title: Broadcasting a message to the #my-awesome-channel folks
# Sends a push notification with title and body to a channel # Sends a push notification with title and body to a channel
- pushbullet: - pushbullet:
api_key: "ABC123abc123ABC123abc123ABC123ab" api_key: ABC123abc123ABC123abc123ABC123ab
channel: "my-awesome-channel" channel: my-awesome-channel
title: "ALERT! Signup service is down" title: ALERT! Signup service is down
body: "Error rate on signup service is over 90% for more than 2 minutes" body: Error rate on signup service is over 90% for more than 2 minutes
''' '''
try: try: