Skip to content

Commit 54c688d

Browse files
wrap line
Co-authored-by: Lysandros Nikolaou <[email protected]>
1 parent 7835a51 commit 54c688d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Grammar/python.gram

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -499,8 +499,8 @@ setcomp[expr_ty]:
499499
| '{' a=expression b=for_if_clauses '}' { _Py_SetComp(a, b, EXTRA) }
500500
| invalid_comprehension
501501
dict[expr_ty]:
502-
| '{' a=[double_starred_kvpairs] '}' { _Py_Dict(CHECK(_PyPegen_get_keys(p, a)),
503-
CHECK(_PyPegen_get_values(p, a)), EXTRA) }
502+
| '{' a=[double_starred_kvpairs] '}' {
503+
_Py_Dict(CHECK(_PyPegen_get_keys(p, a)), CHECK(_PyPegen_get_values(p, a)), EXTRA) }
504504
dictcomp[expr_ty]:
505505
| '{' a=kvpair b=for_if_clauses '}' { _Py_DictComp(a->key, a->value, b, EXTRA) }
506506
| invalid_dict_comprehension

0 commit comments

Comments
 (0)