Skip to content

Commit 0daae24

Browse files
[Chore] More debug statements.
1 parent a251a7e commit 0daae24

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/settings.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ def load_commands_browser_settings():
1919
"filter_core_commands_on_type": ["text", "window", "application", "find"],
2020
"copy_command_signature_modifier_key": "ctrl"
2121
}
22+
print(commands_browser_settings.default)
2223

2324

2425
def commands_browser_settings(key):
@@ -30,6 +31,7 @@ def commands_browser_settings(key):
3031
Returns:
3132
value (Any): The value of said key.
3233
"""
34+
print(commands_browser_settings.default)
3335
default = commands_browser_settings.default.get(key, None)
3436
print(f"[CommandsBrowser]: {key} - {commands_browser_settings.obj.get(key, default)}")
3537
return commands_browser_settings.obj.get(key, default)

0 commit comments

Comments
 (0)