From dd94afe20623b0c991049741428e9f4f670cf89c Mon Sep 17 00:00:00 2001 From: Aaron Steers Date: Sat, 9 Nov 2024 20:24:49 -0800 Subject: [PATCH] ignore root __init__.py sort issues --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index d1cd818d..ada33688 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -98,7 +98,12 @@ sphinx-docs = ["Sphinx", "sphinx-rtd-theme"] vector-db-based = ["langchain", "openai", "cohere", "tiktoken"] sql = ["sqlalchemy"] +[tool.isort] +skip = ["__init__.py"] # TODO: Remove after this is fixed: https://github.com/airbytehq/airbyte-python-cdk/issues/12 + [tool.ruff] +exclude = ["__init__.py"] # TODO: Remove after this is fixed: https://github.com/airbytehq/airbyte-python-cdk/issues/12 + # Setting python version to at least 3.10 avoids `from __future__ import annotations`. target-version = "py310" # This is consistent with airbytehq/airbyte root pyproject.toml Black rule defined.