From a94cbc4e02ee144d14a24743882e1c3514406c89 Mon Sep 17 00:00:00 2001
From: Russ Allbery <rra@lsst.org>
Date: Mon, 16 Dec 2024 14:46:05 -0800
Subject: [PATCH] Remove now-unneeded Black configuration

We're now using Ruff for reformatting, so the file ignore patterns
for Black are no longer used. Delete them from `pyproject.toml`.
---
 pyproject.toml | 14 --------------
 1 file changed, 14 deletions(-)

diff --git a/pyproject.toml b/pyproject.toml
index 539f0b24..f1797d61 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -5,20 +5,6 @@
 [tool.black]
 line-length = 79
 target-version = ["py312"]
-exclude = '''
-/(
-    \.eggs
-  | \.git
-  | \.mypy_cache
-  | \.tox
-  | \.venv
-  | _build
-  | build
-  | dist
-)/
-'''
-# Use single-quoted strings so TOML treats the string like a Python r-string
-# Multi-line strings are implicitly treated by black as regular expressions
 
 [tool.mypy]
 disallow_untyped_defs = true