Skip to content

Commit 2b1f17c

Browse files
cjolowiczactions-user
authored andcommittedJun 16, 2021
Update poetry.lock
Original-Commit: cjolowicz/cookiecutter-hypermodern-python@129c58c
1 parent 9c6a529 commit 2b1f17c

File tree

3 files changed

+3
-41
lines changed

3 files changed

+3
-41
lines changed
 

‎noxfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def mypy(session: Session) -> None:
119119
"""Type-check using mypy."""
120120
args = session.posargs or ["src", "tests", "docs/conf.py"]
121121
session.install(".")
122-
session.install("mypy", "pytest", "types-click")
122+
session.install("mypy", "pytest")
123123
session.run("mypy", *args)
124124
if not session.posargs:
125125
session.run("mypy", f"--python-executable={sys.executable}", "noxfile.py")

‎poetry.lock

+1-35
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎src/cookiecutter_hypermodern_python_instance/__main__.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,8 @@
22
import click
33

44

5-
# @click.version_option results in "untyped decorator" error
6-
# https://github.com/python/typeshed/issues/5642
7-
8-
95
@click.command()
10-
@click.version_option() # type: ignore[misc]
6+
@click.version_option()
117
def main() -> None:
128
"""Cookiecutter Hypermodern Python Instance."""
139

0 commit comments

Comments
 (0)
Please sign in to comment.