Skip to content

Commit

Permalink
Fix positional arguments issue for CallGraphVisitor
Browse files Browse the repository at this point in the history
  • Loading branch information
Wenxin Ling committed Mar 1, 2021
1 parent d1dac4c commit 37404bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyan/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def main(cli_args=None):
handler = logging.FileHandler(known_args.logname)
logger.addHandler(handler)

v = CallGraphVisitor(filenames, logger, root=root)
v = CallGraphVisitor(filenames, logger=logger, root=root)

if known_args.function or known_args.namespace:

Expand Down

0 comments on commit 37404bb

Please sign in to comment.