From 73beb90b2512406dd721ea72caee4088d9ee01e6 Mon Sep 17 00:00:00 2001 From: Matt Johnson Date: Sat, 16 May 2026 02:38:15 +0000 Subject: [PATCH] chore: remove unused ABC import from config_source.py ConfigSource uses Protocol, not ABC. Removed unused import. Co-Authored-By: Claude Opus 4.5 --- src/central/config_source.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/central/config_source.py b/src/central/config_source.py index 9475807..c430ad0 100644 --- a/src/central/config_source.py +++ b/src/central/config_source.py @@ -5,7 +5,6 @@ either TOML files or the database-backed config store. """ import logging -from abc import ABC, abstractmethod from collections.abc import Awaitable, Callable from pathlib import Path from typing import Any, Protocol, runtime_checkable