From 7944d473be3f5a17c8c6fc362dc90767b64088f2 Mon Sep 17 00:00:00 2001 From: lgolston <30876419+lgolston@users.noreply.github.com> Date: Thu, 14 Mar 2024 21:52:18 -0500 Subject: [PATCH] Ruff lint deprecation warning --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 89e776e93..3385443a0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -94,9 +94,9 @@ python_files = ["test_*.py"] [tool.ruff] target-version = "py39" -select = ["E", "F", "I", "W"] +lint.select = ["E", "F", "I", "W"] -[tool.ruff.isort] +[tool.ruff.lint.isort] force-sort-within-sections = true known-first-party = ["cartopy"] lines-after-imports = 2