mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 05:15:12 +00:00

## Summary On `main`, we flag redefinitions in cases like: ```python import os x = 1 if x > 0: import os ``` That is, we consider these to be in the "same branch", since they're not in disjoint branches. This matches Flake8's behavior, but it seems to lead to false positives.
6 lines
42 B
Python
6 lines
42 B
Python
import os
|
|
|
|
x = 1
|
|
|
|
if x > 0:
|
|
import os
|