src/torchfx/validation/validators.py:642 checks if min_q is not None or max_q is not None: but min_q defaults to 0.001 and is typed float (line 611), so the condition is always true and the or is dead logic. Tidy the signature/condition so intent (optional bounds) matches the types.
src/torchfx/validation/validators.py:642checksif min_q is not None or max_q is not None:butmin_qdefaults to0.001and is typedfloat(line 611), so the condition is always true and theoris dead logic. Tidy the signature/condition so intent (optional bounds) matches the types.