Fix quotes
This commit is contained in:
parent
36e958d470
commit
cb73385710
|
@ -1,6 +1,6 @@
|
||||||
class Plane:
|
class Plane:
|
||||||
def __init__(self, icao, conf_file):
|
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.icao = icao.upper()
|
||||||
self.conf_file = conf_file
|
self.conf_file = conf_file
|
||||||
self.geo_alt_ft = None
|
self.geo_alt_ft = None
|
||||||
|
@ -25,7 +25,7 @@ class Plane:
|
||||||
def getICAO(self):
|
def getICAO(self):
|
||||||
return self.icao
|
return self.icao
|
||||||
def run(self, ac_dict, source):
|
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
|
#Import Modules
|
||||||
#Clear Terminal
|
#Clear Terminal
|
||||||
#print("\033[H\033[J")
|
#print("\033[H\033[J")
|
||||||
|
|
Loading…
Reference in New Issue