Skip to content

Commit

Permalink
fix: fix args in main (#318)
Browse files Browse the repository at this point in the history
  • Loading branch information
fdrgsp authored Feb 29, 2024
1 parent fd788a4 commit 6ed199e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/napari_micromanager/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
def main(args: Sequence[str] | None = None) -> None:
"""Create a napari viewer and add the MicroManager plugin to it."""
if args is None:
args = sys.argv
args = sys.argv[1:]

parser = argparse.ArgumentParser(description="Enter string")
parser.add_argument(
Expand Down

0 comments on commit 6ed199e

Please sign in to comment.