fix types

This commit is contained in:
Gilles Boccon-Gibod
2026-03-06 18:23:20 -08:00
parent f9bd3084b9
commit 9b2e345a1e
3 changed files with 14 additions and 14 deletions
+2
View File
@@ -170,7 +170,9 @@ def format_code(ctx, check=False, diff=False):
@task
def check_types(ctx):
checklist = ["apps", "bumble", "examples", "tests", "tasks.py"]
print(">>> Running the type checker...")
try:
print("+++ Checking with mypy...")
ctx.run(f"mypy {' '.join(checklist)}")
except UnexpectedExit as exc:
print("Please check your code against the mypy messages.")