Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
Aki Vänttinen committed Nov 25, 2024
1 parent ae53f39 commit 66a549d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sharpy/managers/core/grids/grid.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 66a549d

Please sign in to comment.