You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: use explicit None check for params instead of falsy or
`params or []` treated empty tuples/lists as None. Now uses
`params if params is not None else []` which is the correct
Python idiom for defaulting only None values.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
0 commit comments