Making Default optional in Match strcuture

Change-Id: Ia2e7315de64101589491ef762504662a691219ad
This commit is contained in:
Krzysztof Szukiełojć 2016-09-30 14:38:58 +02:00 committed by Kirill Zaitsev
parent 80a6886e81
commit 1ac54a9a25
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ CODE_STRUCTURE = {
'keywords': {
'Match': check_req(('expression', 'codeblock')),
'Value': check_req('expression'),
'Default': check_req('codeblock'),
'Default': check_req('codeblock', False),
}
},
'Switch': {