Skip to content

Commit 66a549d

Browse files
author
Aki Vänttinen
committed
flake8
1 parent ae53f39 commit 66a549d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sharpy/managers/core/grids/grid.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ def __getitem__(self, pos: Point2):
3333
return self.get(math.floor(pos[0]), math.floor(pos[1]))
3434

3535
@abstractmethod
36-
def get_default(self): ...
36+
def get_default(self):
37+
...
3738

3839
def is_inside(self, pos: Point2):
3940
return 0 <= pos[0] < self.width and 0 <= pos[1] < self.height

0 commit comments

Comments
 (0)