diff options
| author | Scott Gasch <[email protected]> | 2021-10-31 13:08:51 -0700 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2021-10-31 13:08:51 -0700 |
| commit | eb9e6df32ed696158bf34dba6464277b648f5c74 (patch) | |
| tree | 54ae278562008b0ffa834b2d34b2158d9119dc65 /config.py | |
| parent | 05a26ae305adfc47f38b8534ec8f35640df3955e (diff) | |
Ugh, a bunch of things. @overrides. --lmodule. Chromecasts. etc...
Diffstat (limited to 'config.py')
| -rw-r--r-- | config.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -96,11 +96,13 @@ args = argparse.ArgumentParser( # than once. config_parse_called = False + # A global configuration dictionary that will contain parsed arguments. # It is also this variable that modules use to access parsed arguments. # This is the data that is most interesting to our callers; it will hold # the configuration result. -config: Dict[str, Any] = {} +config = {} +# It would be really nice if this shit worked from interactive python def add_commandline_args(title: str, description: str = ""): |
