Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Upcoming (TBD)
Bug Fixes
---------
* Watch command now returns correct time when ran as part of a multi-part query (#1565)
* Don't diagnose free-entry sections such as `[favorite_queries]` in `--checkup`.


1.54.1 (2026/02/17)
Expand Down
8 changes: 8 additions & 0 deletions mycli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2395,6 +2395,14 @@ def do_config_checkup(mycli: MyCli) -> None:
if section_name == 'colors' and item_name.startswith('sql.'):
# these are commented out in the package myclirc
continue
if section_name in [
'favorite_queries',
'init-commands',
'alias_dsn',
'alias_dsn.init-commands',
]:
# these are free-entry sections, so a comparison per item is not meaningful
continue
transition_key = f'{indent}[{section_name}]\n{indent}{item_name}'
if transition_key in transitions:
continue
Expand Down