File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -531,7 +531,8 @@ def full_call_graph(functions, **kwargs):
531531
532532 print_buf (std_buf , '"{}" -> "{}";' .format (func , caller ))
533533
534- if (caller not in functions ) or (len (functions [caller ]["files" ]) == 0 ):
534+ if caller not in functions or \
535+ len (functions [caller ]["files" ]) == 0 :
535536 print_buf (std_buf , '"{}" [style=dashed]' .
536537 format (caller ))
537538
@@ -648,7 +649,8 @@ def main():
648649 match = re .match (function , line )
649650 if match is not None :
650651 function_name = match .group ("function" )
651- if function_name in functions and functions [function_name ]["files" ]:
652+ if function_name in functions and \
653+ functions [function_name ]["files" ]:
652654 if not config .no_warnings :
653655 print_err ("WARNING: Function {} defined in multiple "
654656 "files \" {}\" !" .
You can’t perform that action at this time.
0 commit comments