Files
ruff/resources/test/fixtures/pyflakes/F622.py
2022-12-01 13:33:33 -05:00

4 lines
64 B
Python

*a, *b, c = (1, 2, 3)
*a, b, c = (1, 2, 3)
a, b, *c = (1, 2, 3)