Many examples under examples/ use the following line to set the 'default' config file.
if __file__ != sys.argv[-1]:
However, in Python 3.9+, this won't work because __file__ is an absolute path.
An easy way to fix it will be using something like:
if sys.argv[-1] in __file__:
Or, alternatively, we can change __file__ to os.path.basename(__file__).
There might be a better idea, so making an issue to discuss.