We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae53f39 commit 66a549dCopy full SHA for 66a549d
sharpy/managers/core/grids/grid.py
@@ -33,7 +33,8 @@ def __getitem__(self, pos: Point2):
33
return self.get(math.floor(pos[0]), math.floor(pos[1]))
34
35
@abstractmethod
36
- def get_default(self): ...
+ def get_default(self):
37
+ ...
38
39
def is_inside(self, pos: Point2):
40
return 0 <= pos[0] < self.width and 0 <= pos[1] < self.height
0 commit comments