mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 05:15:12 +00:00
8 lines
164 B
Python
8 lines
164 B
Python
"""Test for accessing class members within a generator."""
|
|
|
|
|
|
class Class:
|
|
items = []
|
|
|
|
if len(replacements := {item[1] for item in items}) > 1:
|
|
pass
|