From 56e7958803f30533f02b6767a86cd926981f4de2 Mon Sep 17 00:00:00 2001 From: Jack Sweeney Date: Sun, 22 Nov 2020 13:20:41 +0000 Subject: [PATCH] Period fix docustirngs Remove push response set --- planeClass.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/planeClass.py b/planeClass.py index b894d20..318b764 100644 --- a/planeClass.py +++ b/planeClass.py @@ -1,6 +1,6 @@ class Plane: def __init__(self, icao, conf_file): - """Initializes a plane object from its config file and given icao""" + """Initializes a plane object from its config file and given icao.""" self.icao = icao.upper() self.conf_file = conf_file self.geo_alt_ft = None @@ -25,7 +25,7 @@ class Plane: def getICAO(self): return self.icao def run(self, ac_dict, source): - """Runs a check of a plane module to see if its landed or takenoff using plane data, and takes action if so""" + """Runs a check of a plane module to see if its landed or takenoff using plane data, and takes action if so.""" #Import Modules #Clear Terminal #print("\033[H\033[J") @@ -238,7 +238,7 @@ class Plane: if self.has_coords: try: self.location = geolocator.reverse(self.combined) - except: + except BaseException: print ("Geopy API Error") else: # print (Fore.YELLOW, "Geopy debug: ", location.raw, Style.RESET_ALL) @@ -321,8 +321,8 @@ class Plane: if self.config.getboolean('PUSHBULLET', 'ENABLE'): with open(self.map_file_name, "rb") as pic: map_data = self.pb.upload_file(pic, "Tookoff IMG") - push = self.pb_channel.push_note(self.config.get('PUSHBULLET', 'TITLE'), self.tookoff_message) - push = self.pb_channel.push_file(**map_data) + self.pb_channel.push_note(self.config.get('PUSHBULLET', 'TITLE'), self.tookoff_message) + self.pb_channel.push_file(**map_data) #Twitter if self.config.getboolean('TWITTER', 'ENABLE'): twitter_media_map_obj = self.tweet_api.media_upload(self.map_file_name) @@ -364,8 +364,8 @@ class Plane: if self.config.getboolean('PUSHBULLET', 'ENABLE'): with open(self.map_file_name, "rb") as pic: map_data = self.pb.upload_file(pic, "Landed IMG") - push = self.pb_channel.push_note(self.config.get('PUSHBULLET', 'TITLE'), self.landed_message) - push = self.pb_channel.push_file(**map_data) + self.pb_channel.push_note(self.config.get('PUSHBULLET', 'TITLE'), self.landed_message) + self.pb_channel.push_file(**map_data) #Twitter if self.config.getboolean('TWITTER', 'ENABLE'): twitter_media_map_obj = self.tweet_api.media_upload(self.map_file_name)