Reformat code with upgraded version of black (#3446)

This commit is contained in:
zhexu14
2024-10-05 07:19:39 +10:00
committed by GitHub
parent b008305275
commit 0e9a8ac1a1
58 changed files with 121 additions and 161 deletions

View File

@@ -23,12 +23,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]):