From 440ae14f76119172424f14fce903b9d2e0e4322a Mon Sep 17 00:00:00 2001 From: Maxwell G Date: Tue, 5 Sep 2023 12:21:23 -0500 Subject: [PATCH] noxfile: run typing session as part of lint session (#355) `nox -e lint` runs the `static` and `formatters` sessions, but it does not run `nox -e typing` due to an oversight in the initial PR. --- noxfile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/noxfile.py b/noxfile.py index 266e930b741..486b23b18c0 100644 --- a/noxfile.py +++ b/noxfile.py @@ -51,6 +51,7 @@ def typing(session: nox.Session): @nox.session def lint(session: nox.Session): + session.notify("typing") session.notify("static") session.notify("formatters")