Skip to content

Commit 298c9b7

Browse files
committed
More global variables removal fixes.
1 parent cb90d82 commit 298c9b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

structure_threader/structure_threader.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ def structure_harvester(resultsdir, wrapped_prog):
200200
return bestk
201201

202202

203-
def create_plts(resultsdir, wrapped_prog, Ks, bestk):
203+
def create_plts(resultsdir, wrapped_prog, Ks, bestk, arg):
204204
"""Create plots from result dir.
205205
:param resultsdir: path to results directory"""
206206

@@ -493,7 +493,7 @@ def main():
493493
bestk = arg.bestk
494494
else:
495495
bestk = None
496-
create_plts(arg.outpath, wrapped_prog, Ks, bestk)
496+
create_plts(arg.outpath, wrapped_prog, Ks, bestk, arg)
497497

498498

499499
if __name__ == "__main__":

0 commit comments

Comments
 (0)