feat(python): add match-case indents

This commit is contained in:
Pham Huy Hoang 2023-03-25 09:29:32 +09:00 committed by Amaan Qureshi
parent a072d923c7
commit 1ffa019856
3 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,15 @@
a = 0
def test_match_case():
match a:
case 1:
return
def test_match():
match a:
def test_case():
match a:
case b: