Skip to content

Commit a5a6519

Browse files
fm3philippotto
authored andcommitted
Fix scale passing in main for downsample_mags_anisotropic (#172)
Before #139 the scale was extracted to a separate variable, but now it was just missing. So we need to use args.scale.
1 parent 0b77402 commit a5a6519

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wkcuber/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def main(args):
6565
args.layer_name,
6666
Mag(1),
6767
Mag(args.max_mag),
68-
scale,
68+
args.scale,
6969
"default",
7070
not args.no_compress,
7171
args=args,

0 commit comments

Comments
 (0)