Skip to content
This repository was archived by the owner on Apr 11, 2023. It is now read-only.

Commit 106e827

Browse files
author
Miltos
authored
Merge pull request #238 from rifatarefin/master
fixed syntax error
2 parents 76a006f + f1ec923 commit 106e827

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

function_parser/function_parser/process_calls.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

4545
definitions = defaultdict(list)
4646
with open(args['DEFINITION_FILE'], 'rb') as f:
47-
for d in pickle.load(f)
47+
for d in pickle.load(f):
4848
definitions[d['nwo']].append(d)
4949
definitions = dict(definitions)
5050

0 commit comments

Comments
 (0)