Skip to content

Commit

Permalink
Fix some false positives
Browse files Browse the repository at this point in the history
  • Loading branch information
tbarbette committed Jul 24, 2024
1 parent 52e67b7 commit 6cdaa1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion npf/grapher.py
Original file line number Diff line number Diff line change
Expand Up @@ -1581,7 +1581,6 @@ def generate_plot_for_graph(self, i, i_subplot, figure, n_cols, n_lines, vars_va
if not xmin or ma==0:
xmin = mal - (d * plt.margins()[0])
if (xmin <= 1):
print(xmin)
plt.xlim(xmin=xmin)
else:
plt.xlim(xmin=pow(base,xmin))
Expand Down
4 changes: 2 additions & 2 deletions npf_compare.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ def main():
group_series(filename,args,series,time_series,options=args) if args.iterative else None
)

group_series(filename, args, series, time_series, options=args)
group_series(filename, series, time_series, options=args)

if __name__ == "__main__":
multiprocessing.set_start_method('forkserver')
main()
main()

0 comments on commit 6cdaa1d

Please sign in to comment.