From ab0e7f1bc1eb927bfc17f5240d86b7a63b6b668e Mon Sep 17 00:00:00 2001 From: Artur Toshev Date: Tue, 20 Feb 2024 03:01:25 +0000 Subject: [PATCH] solve wandb isort issue with explicit third-party --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index b832e1f..42b1bf4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -95,6 +95,9 @@ select = [ # "D", # pydocstyle - consider in the future ] +[tool.ruff.lint.isort] +known-third-party = ["wandb"] + [tool.pytest.ini_options] testpaths = "tests/" addopts = "--cov=lagrangebench --cov-fail-under=50"