poetry/src/poetry/config/config_source.py

12 lines
261 B
Python

from __future__ import annotations
from typing import Any
class ConfigSource:
def add_property(self, key: str, value: Any) -> None:
raise NotImplementedError()
def remove_property(self, key: str) -> None:
raise NotImplementedError()