ALEKSANDR ZHDANOV
ALEKSANDR ZHDANOV
# I have made things! ## Checklist - [x] I have double checked that there are no unrelated changes in this pull request (old patches, accidental config files, etc) -...
# Rule request ## Thesis We should support simplifying `match` statements that use simple sequence and mapping patterns: Example: ```python match data: case [1, 2]: handle_pair() case _: ignore() ```...
# Rule request ## Thesis We should support simplifying `match` statements with only one case and no wildcard: Example: ```python match x: case 1: do_something() ``` Can be rewritten as:...