Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
seanh committed Oct 25, 2023
1 parent a242272 commit a02a000
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from importlib.metadata import version


def cli(_argv=None): # pylint:disable=inconsistent-return-statements
def cli(argv=None):
parser = ArgumentParser()
parser.add_argument(
"-v",
Expand All @@ -11,4 +11,4 @@ def cli(_argv=None): # pylint:disable=inconsistent-return-statements
version=version("{{ cookiecutter.slug }}"),
)

args = parser.parse_args(_argv)
_args = parser.parse_args(argv)

0 comments on commit a02a000

Please sign in to comment.