ruff/crates/ruff_linter/resources/test/fixtures/pyflakes/F622.py
2023-09-20 08:38:27 +02:00

3 lines
64 B
Python

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