don't shadow format function.

This commit is contained in:
Joey de l'Arago 2022-11-28 09:13:19 +01:00
parent 57ec36b7fe
commit a809e5a91c
4 changed files with 5 additions and 5 deletions

View file

@ -12,5 +12,5 @@ class FileFormatter(ABC):
self._settings = settings
@abstractmethod
def format(self, file: Path) -> None:
def formatFile(self, file: Path) -> None:
pass