Skip to content

Commit 3f285c7

Browse files
Fix namespace error
1 parent 658d0f9 commit 3f285c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codegraph/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def get_code_objects(paths_list: List) -> Dict:
3636

3737
class CodeGraph:
3838
def __init__(self, args: Namespace):
39-
self.paths_list = get_python_paths_list(args["paths"])
39+
self.paths_list = get_python_paths_list(args.paths)
4040
# get py modules list data
4141
self.modules_data = get_code_objects(self.paths_list)
4242

0 commit comments

Comments
 (0)