Avoid tuple expression in assert
Asserting a tuple literal-like expression is usually always truthy and can mask failing checks.
#Metadata
#Why it matters
A non-empty tuple evaluates to true, so tuple assertions often pass even when the intended condition is false.
#Remediation
Assert a single boolean predicate or split checks into separate assert statements.
#Repository path
The generated metadata points to critiq-rules/libs/rules/catalog/rules/python/py.correctness.assert-on-tuple.rule.yaml.