Fixed pass statements that were literally doing nothing.

master
MrTyton 7 years ago
parent 7bf9792273
commit cc14dd210c

@ -15,13 +15,20 @@ from ConfigParser import ConfigParser
def enable_notifications(options):
if options.pushbullet:
fail = False
try:
pb = Pushbullet(options.pushbullet)
if options.pbdevice:
except:
print "Problem wtih connecting to pushbullet. API Key likely invalid"
fail = True
if options.pbdevice and not fail:
try:
pb = pb.get_device(options.pbdevice)
except:
print "Cannot get this device."
fail = True
pass
if not fail:
temp_note = Notification()
temp_note.send_notification = pb.push_note
yield temp_note

Loading…
Cancel
Save