Skip to content

Commit

Permalink
resolve wildcard in cli since created folder will lead to an error if…
Browse files Browse the repository at this point in the history
… wildcards are not solved before (#150)
  • Loading branch information
lukasalexanderweber authored Oct 3, 2023
1 parent 54d5f8e commit eba1a00
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion stitching/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .stitcher import AffineStitcher, Stitcher # noqa: F401

__version__ = "0.5.0"
__version__ = "0.5.1"
4 changes: 2 additions & 2 deletions stitching/cli/stitch.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,8 +286,8 @@ def main():
args_dict = vars(args)

# Extract In- and Output
images = args_dict.pop("images")
feature_masks = args_dict.pop("feature_masks")
images = Images.resolve_wildcards(args_dict.pop("images"))
feature_masks = Images.resolve_wildcards(args_dict.pop("feature_masks"))

verbose = args_dict.pop("verbose")
verbose_dir = args_dict.pop("verbose_dir")
Expand Down

0 comments on commit eba1a00

Please sign in to comment.