diff --git a/python/online/fxreader/pr34/commands_typed/cli_bootstrap.py b/python/online/fxreader/pr34/commands_typed/cli_bootstrap.py index 14d20a1..06f837e 100644 --- a/python/online/fxreader/pr34/commands_typed/cli_bootstrap.py +++ b/python/online/fxreader/pr34/commands_typed/cli_bootstrap.py @@ -29,12 +29,12 @@ logger = logging.getLogger(__name__) def toml_load(f: BinaryIO) -> Any: - # try: - # import tomllib - # - # return tomllib.load(f) - # except: - # pass + try: + import tomllib + + return tomllib.load(f) + except: + pass try: import tomli