removed now unused SlitBase

This commit is contained in:
2022-07-09 20:18:04 +02:00
parent a97e92b41a
commit d4bbf3b7f3
@@ -1,14 +0,0 @@
class SlitBase:
def __call__(self, width, height):
self.set_hg(width)
self.set_vg(height)
def __repr__(self):
gap = "gap: ({}, {})".format(self.get_hg(), self.get_vg())
pos = "pos: ({}, {})".format(self.get_ho(), self.get_vo())
return "\n".join((gap, pos))