mirror of
https://github.com/qmk/qmk_firmware
synced 2024-11-16 00:45:00 +00:00
Merge remote-tracking branch 'origin/master' into develop
This commit is contained in:
commit
1ac030b119
1 changed files with 2 additions and 0 deletions
|
@ -361,6 +361,8 @@ class KeymapBeautifier:
|
|||
args.append(arg.value)
|
||||
elif type(arg) is pycparser.c_ast.ID:
|
||||
args.append(arg.name)
|
||||
elif type(arg) is pycparser.c_ast.FuncCall:
|
||||
args.append(self.function_expr(arg))
|
||||
return "{}({})".format(name, ",".join(args))
|
||||
|
||||
def key_expr(self, raw):
|
||||
|
|
Loading…
Reference in a new issue