### Summary The fix for [`falsy-dict-get-fallback` (RUF056)](https://docs.astral.sh/ruff/rules/falsy-dict-get-fallback/) introduces a syntax error when the falsy value is parenthesized. ```console $ cat >ruf056.py <<'# EOF' d = {} not d.get("key", (False)) # EOF $ ruff --isolated check ruf056.py --select RUF056 --preview --diff 2>&1 | grep error: error: Fix introduced a syntax error. Reverting all changes. ``` ### Version ruff 0.12.0 (87f0feb21 2025-06-17)