From 5b7b28e683052608851164e830c66bf1bc081c11 Mon Sep 17 00:00:00 2001 From: Tang Vu Date: Sun, 22 Mar 2026 00:07:23 +0700 Subject: [PATCH] refactor: unexpanded tilde in file path (#2283) The path `'~/.maigret/settings.json'` uses a tilde (`~`) which is not automatically expanded by Python's `open()` function. This will cause the settings file in the user's home directory to be silently ignored (caught by `FileNotFoundError`) because Python will look for a literal directory named `~` in the current working directory. Affected files: settings.py