formatter.py (poetry-1.1.15) | : | formatter.py (poetry-1.2.0) | ||
---|---|---|---|---|
import logging | from __future__ import annotations | |||
class Formatter(object): | class Formatter: | |||
def format(self, record): # type: (logging.LogRecord) -> str | def format(self, record: str) -> str: | |||
raise NotImplementedError() | raise NotImplementedError() | |||
End of changes. 2 change blocks. | ||||
3 lines changed or deleted | 3 lines changed or added |