diff options
author | Botond Hende <nettingman@gmail.com> | 2024-10-22 21:45:28 +0200 |
---|---|---|
committer | Botond Hende <nettingman@gmail.com> | 2024-10-22 21:45:28 +0200 |
commit | 6f3acbf0bec6bf012c5f52aee2f18059918104d9 (patch) | |
tree | 1d67188e675654cafe452f6c97f371693c112034 /__main__.py | |
parent | 58d23f1f010e5d58b8d9296dae27988c939a53b1 (diff) |
Diffstat (limited to '__main__.py')
-rw-r--r-- | __main__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/__main__.py b/__main__.py index 8818205..008ceb4 100644 --- a/__main__.py +++ b/__main__.py @@ -51,7 +51,7 @@ def main(): } print(result_dict) handler = getattr(globals()[result_dict["domain"]], result_dict["intent"]) - handler(result_dict) + handler(result_dict, config) else: print("<no match>") except KeyboardInterrupt: |