chore: remove unused ABC import from config_source.py

ConfigSource uses Protocol, not ABC. Removed unused import.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Matt Johnson 2026-05-16 02:38:15 +00:00
commit 73beb90b25

View file

@ -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