Skip to content

Commit

Permalink
Fix scale passing in main for downsample_mags_anisotropic (#172)
Browse files Browse the repository at this point in the history
Before #139 the scale was extracted to a separate variable, but now it was just missing. So we need to use args.scale.
  • Loading branch information
fm3 authored and philippotto committed Dec 12, 2019
1 parent 0b77402 commit a5a6519
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wkcuber/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def main(args):
args.layer_name,
Mag(1),
Mag(args.max_mag),
scale,
args.scale,
"default",
not args.no_compress,
args=args,
Expand Down

0 comments on commit a5a6519

Please sign in to comment.