13 lines
223 B
Python
13 lines
223 B
Python
import yaml
|
|
|
|
|
|
|
|
with open("config.yaml", 'r') as f:
|
|
CONFIG = yaml.load(f, Loader=yaml.Loader)
|
|
|
|
METRICS_INITIALIZED = False
|
|
|
|
pipisa_length_metric = None
|
|
user_attempt_metric = None
|
|
user_last_attempt_metric = None
|