diff options
author | David Luevano Alvarado <david@luevano.xyz> | 2021-05-18 23:14:03 -0600 |
---|---|---|
committer | David Luevano Alvarado <david@luevano.xyz> | 2021-05-18 23:14:03 -0600 |
commit | efd7859719411e085cb7bce6203c9ee15b3b81de (patch) | |
tree | 85eb9b5d9955831dee004633a7267f12b2e71bd1 /src | |
parent | f8ad61ce99645ed8508f118419ddb7c6075c58e6 (diff) |
checking argparse errors
Diffstat (limited to 'src')
-rw-r--r-- | src/pyssg/pyssg.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pyssg/pyssg.py b/src/pyssg/pyssg.py index 7fe24d5..f90cfcb 100644 --- a/src/pyssg/pyssg.py +++ b/src/pyssg/pyssg.py @@ -71,6 +71,9 @@ def get_options() -> Namespace: def main() -> None: opts: dict[str, Union[str, bool]] = vars(get_options()) + for k, v in opts.items(): + print(k, v) + conf_path: str = opts['config'] conf_path = os.path.expandvars(conf_path) |