ruff/resources/test/fixtures/F622.py
2022-09-10 15:04:33 -04:00

3 lines
64 B
Python

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