From 195367a1f9ce63cbd38bd146442c0cb1175a35a8 Mon Sep 17 00:00:00 2001 From: Daniel Kaufman <114174502+danielfromearth@users.noreply.github.com> Date: Thu, 14 Nov 2024 16:59:44 -0500 Subject: [PATCH] remove tool section for black from pyproject.toml --- pyproject.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b1e8456..611ac8a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,9 +37,6 @@ module = [ ] ignore_missing_imports = true -[tool.black] -line-length = 100 - [tool.ruff] builtins = ["ellipsis"] exclude = [ @@ -47,6 +44,8 @@ exclude = [ "doc", "_typed_ops.pyi", ] +# Allow lines to be as long as 100. +line-length = 100 target-version = "py310" [tool.ruff.lint]