Skip to content

Commit

Permalink
update return type of get_argv hook
Browse files Browse the repository at this point in the history
  • Loading branch information
pvandyken committed Apr 30, 2024
1 parent eb8bc38 commit e6f8f63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snakebids/bidsapp/hookspecs.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def add_cli_arguments(


@hookspec(firstresult=True)
def get_argv(argv: list[str], config: dict[str, Any]) -> list[str]: # type: ignore
def get_argv(argv: list[str], config: dict[str, Any]) -> list[str] | None:
"""Set or modify the CLI parameters that will be parsed by the parser."""


Expand Down

0 comments on commit e6f8f63

Please sign in to comment.