From a89f4e26c75013507bf7d997326486c53398e940 Mon Sep 17 00:00:00 2001 From: Federico Zambelli Date: Wed, 16 Oct 2024 11:14:21 +0200 Subject: [PATCH] chore: small typo --- .../devenv.nix.jinja | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/{% if language == 'Python' %}{{ project_name }}{% endif %}/devenv.nix.jinja b/template/{% if language == 'Python' %}{{ project_name }}{% endif %}/devenv.nix.jinja index c7e9d7f..6769b1f 100644 --- a/template/{% if language == 'Python' %}{{ project_name }}{% endif %}/devenv.nix.jinja +++ b/template/{% if language == 'Python' %}{{ project_name }}{% endif %}/devenv.nix.jinja @@ -47,7 +47,7 @@ libz # fix: for numpy/pandas import pyfix = { exec = "ruff check . --fix && ruff format ."; - description = "Lint, (possibly) fix and apply formatting to python files"; + description = "Lint, (possibly) fix and apply formatting to python files."; }; {% endblock %}