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
Ruff (0.5.6) gives false positives for list concatenation if the added list contains sql, even if there is no string formatting done.
Other bug reports for false positives don't concern lists.
class B(A): sqls = A.sqls + ["select colB from tableB"]
["select colA from tableA"] + ["select colB from tableB"]
The text was updated successfully, but these errors were encountered:
Ruff (0.5.6) gives false positives for list concatenation if the added list contains sql, even if there is no string formatting done.
Other bug reports for false positives don't concern lists.
class B(A): sqls = A.sqls + ["select colB from tableB"]
["select colA from tableA"] + ["select colB from tableB"]
The text was updated successfully, but these errors were encountered: