fixed naming in tra.py

Signed-off-by: Arthur Lu <learthurgo@gmail.com>
This commit is contained in:
Arthur Lu 2020-05-23 22:51:58 -05:00
parent 5538f428d6
commit b1e2ab34b2

View File

@ -6,9 +6,9 @@ __author__ = (
"Arthur Lu <learthurgo@gmail.com>", "Arthur Lu <learthurgo@gmail.com>",
) )
match = False match_ = False
metric = False metric_ = False
pit = False pit_ = False
match_enable = True match_enable = True
metric_enable = True metric_enable = True
@ -18,9 +18,9 @@ config = {}
def main(): def main():
global match global match_
global metric global metric_
global pit global pit_
global match_enable global match_enable
global metric_enable global metric_enable
@ -38,7 +38,7 @@ def main():
def match(): def match():
match = True match_ = True
apikey = config["key"]["database"] apikey = config["key"]["database"]
competition = config["competition"] competition = config["competition"]
@ -47,16 +47,16 @@ def match():
data = su.load_match(apikey, competition) data = su.load_match(apikey, competition)
su.matchloop(apikey, competition, data, tests) su.matchloop(apikey, competition, data, tests)
match = False match_ = False
if match_enable == True and match == False: if match_enable == True and match_ == False:
task = threading.Thread(name = "match", target = match) task = threading.Thread(name = "match", target = match)
task.start() task.start()
def metric(): def metric():
metric = True metric_ = True
apikey = config["key"]["database"] apikey = config["key"]["database"]
tbakey = config["key"]["tba"] tbakey = config["key"]["tba"]
@ -67,16 +67,16 @@ def metric():
su.metricloop(tbakey, apikey, competition, timestamp, metric) su.metricloop(tbakey, apikey, competition, timestamp, metric)
metric = False metric_ = False
if metric_enable == True and metric == False: if metric_enable == True and metric_ == False:
task = threading.Thread(name = "match", target = metric) task = threading.Thread(name = "match", target = metric)
task.start() task.start()
def pit(): def pit():
pit = True pit_ = True
apikey = config["key"]["database"] apikey = config["key"]["database"]
competition = config["competition"] competition = config["competition"]
@ -85,9 +85,9 @@ def pit():
data = su.load_pit(apikey, competition) data = su.load_pit(apikey, competition)
su.pitloop(apikey, competition, data, tests) su.pitloop(apikey, competition, data, tests)
pit = False pit_ = False
if pit_enable == True and pit == False: if pit_enable == True and pit_ == False:
task = threading.Thread(name = "pit", target = pit) task = threading.Thread(name = "pit", target = pit)
task.start() task.start()