config_source.py (poetry-1.1.15) | : | config_source.py (poetry-1.2.0) | ||
---|---|---|---|---|
from __future__ import annotations | ||||
from typing import Any | from typing import Any | |||
class ConfigSource(object): | class ConfigSource: | |||
def add_property(self, key, value): # type: (str, Any) -> None | def add_property(self, key: str, value: Any) -> None: | |||
raise NotImplementedError() | raise NotImplementedError() | |||
def remove_property(self, key): # type: (str) -> None | def remove_property(self, key: str) -> None: | |||
raise NotImplementedError() | raise NotImplementedError() | |||
End of changes. 3 change blocks. | ||||
3 lines changed or deleted | 5 lines changed or added |