From c8be7c10914a3bf94a519c9253afa036d2c22910 Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Thu, 24 Aug 2023 10:24:58 -0500 Subject: [PATCH] build: session was renamed --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 31bdccb..b17cf35 100644 --- a/noxfile.py +++ b/noxfile.py @@ -5,7 +5,7 @@ from pathlib import Path import nox -nox.options.sessions = ["lint", "types"] +nox.options.sessions = ["lint", "typecheck"] nox.options.reuse_existing_virtualenvs = True os.environ.update({"PDM_IGNORE_SAVED_PYTHON": "1"})