refactoring

This commit is contained in:
Matthias Bisping 2022-04-05 19:40:13 +02:00
parent ef70e11352
commit b1efb5ed09

View File

@ -75,8 +75,8 @@ class BoxSplitter:
)
@staticmethod
def __large_enough(box):
return box["dim"] >= 10
def __large_enough(wrapped_box: SplitKeyMapper):
return wrapped_box["dim"] >= 10
@staticmethod
def __get_child_boxes(wrapped_box: SplitKeyMapper):