Open C5H12O5 opened 4 days ago
Fixes an issue where the quiet attribute in SanicException would default to the class attribute when set to False. This occurs when the subclass quiet attribute is True. The fix ensures only None triggers the fallback.
quiet
SanicException
False
True
None
Excellent. Thanks for the test also! I'll fix the tests failures.
Fixes an issue where the
quiet
attribute inSanicException
would default to the class attribute when set toFalse
. This occurs when the subclassquiet
attribute isTrue
. The fix ensures onlyNone
triggers the fallback.