From c3df8e2aaff627ddee2ad7a12acbf7e8f20ba5f3 Mon Sep 17 00:00:00 2001 From: Joel Ostblom Date: Mon, 16 Feb 2026 12:14:31 +0100 Subject: [PATCH] feat: :sparkles: Show source line on mypy errors --- template/justfile.jinja | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/justfile.jinja b/template/justfile.jinja index 182379e..24734e1 100644 --- a/template/justfile.jinja +++ b/template/justfile.jinja @@ -54,7 +54,7 @@ check-python: # Check formatting uv run ruff check . # Check types - uv run mypy . + uv run mypy --pretty . # Reformat Python code to match coding style and general structure format-python: