Format missed files with black

This commit is contained in:
Raffson
2024-10-12 17:50:54 +02:00
parent 5c56e7f64e
commit 6ae32b13b8
5 changed files with 7 additions and 8 deletions

View File

@@ -26,12 +26,10 @@ def doctrine_from_name(name: str) -> Doctrine:
class Reducer(Generic[ReducerT], Iterator[ReducerT], ABC):
@abstractmethod
def accept(self) -> None:
...
def accept(self) -> None: ...
@abstractmethod
def reject(self) -> None:
...
def reject(self) -> None: ...
class MultiPolyReducer(Reducer[MultiPolygon]):