From c112c1e6140c1cbc93624ea93881489799b83190 Mon Sep 17 00:00:00 2001 From: Alexey Volkov Date: Tue, 26 Nov 2024 19:51:10 -0800 Subject: [PATCH] chore: Lint - Made black output formatting diffs --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 07cef9bcc..3e94546aa 100644 --- a/noxfile.py +++ b/noxfile.py @@ -40,7 +40,7 @@ def lint(session): "flake8", "flake8-import-order", "docutils", CLICK_VERSION, BLACK_VERSION ) session.install("-e", ".") - session.run("black", "--check", *BLACK_PATHS) + session.run("black", "--check", "--diff", *BLACK_PATHS) session.run( "flake8", "--import-order-style=google",