From 5522a5d96024b5b82bcf374b93d98bb9a3a39bdc Mon Sep 17 00:00:00 2001 From: Lars Date: Wed, 15 May 2024 15:35:02 +0200 Subject: [PATCH] Updated ruff arguments (avoid deprecation hint) --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 323f84cb..5b944765 100644 --- a/noxfile.py +++ b/noxfile.py @@ -74,7 +74,7 @@ def lint(session): """ session.install('ruff', 'mypy') session.run('mypy', 'segno') - session.run('ruff', '.') + session.run('ruff', 'check', '.') @nox.session(python=_PY_DEFAULT_VERSION)