From f8cff034242e60168feee3acccc3bd2bbcf768fc Mon Sep 17 00:00:00 2001 From: Martin Kourim Date: Wed, 28 May 2025 11:30:40 +0200 Subject: [PATCH] chore(pyproject): remove black and isort config sections Removed the [tool.black] and [tool.isort] sections from pyproject.toml. Formatting and sorting of imports is handled by ruff. --- pyproject.toml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index daf2a29..a2e61bd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,12 +33,6 @@ homepage = "https://github.com/input-output-hk/cardano-clusterlib-py" documentation = "https://cardano-clusterlib-py.readthedocs.io/" repository = "https://github.com/input-output-hk/cardano-clusterlib-py" -[tool.black] -line-length = 100 - -[tool.isort] -force_single_line = true - [tool.ruff] line-length = 100