From 9f92fda0bcfd427a4814284a47fef41c8daf9493 Mon Sep 17 00:00:00 2001 From: saimedhi Date: Thu, 1 Feb 2024 12:49:06 -0800 Subject: [PATCH] Fixing as per comments Signed-off-by: saimedhi --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 3dd8fea0..1b261fe0 100644 --- a/noxfile.py +++ b/noxfile.py @@ -74,7 +74,7 @@ def format(session: Any) -> None: session.run("black", *SOURCE_FILES) session.run("python", "utils/license_headers.py", "fix", *SOURCE_FILES) - # session.notify("lint") + session.notify("lint") @nox.session(python=["3.7"]) # type: ignore