diff --git a/sharpy/managers/core/grids/grid.py b/sharpy/managers/core/grids/grid.py index e53f4022..8a75c0ca 100644 --- a/sharpy/managers/core/grids/grid.py +++ b/sharpy/managers/core/grids/grid.py @@ -33,7 +33,8 @@ def __getitem__(self, pos: Point2): return self.get(math.floor(pos[0]), math.floor(pos[1])) @abstractmethod - def get_default(self): ... + def get_default(self): + ... def is_inside(self, pos: Point2): return 0 <= pos[0] < self.width and 0 <= pos[1] < self.height