File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -531,7 +531,8 @@ def full_call_graph(functions, **kwargs):
531
531
532
532
print_buf (std_buf , '"{}" -> "{}";' .format (func , caller ))
533
533
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 :
535
536
print_buf (std_buf , '"{}" [style=dashed]' .
536
537
format (caller ))
537
538
@@ -648,7 +649,8 @@ def main():
648
649
match = re .match (function , line )
649
650
if match is not None :
650
651
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" ]:
652
654
if not config .no_warnings :
653
655
print_err ("WARNING: Function {} defined in multiple "
654
656
"files \" {}\" !" .
You can’t perform that action at this time.
0 commit comments