From 6c3ff03ab92c2d4493355fdbb31a7ababbba97f4 Mon Sep 17 00:00:00 2001 From: troido Date: Thu, 6 Sep 2018 15:13:37 +0200 Subject: actually include the superclass --- asciifarm/client/display/widimp.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 asciifarm/client/display/widimp.py diff --git a/asciifarm/client/display/widimp.py b/asciifarm/client/display/widimp.py new file mode 100644 index 0000000..1fa4240 --- /dev/null +++ b/asciifarm/client/display/widimp.py @@ -0,0 +1,14 @@ + + +class WidImp: + + """widget implementation""" + + def setWidget(self, widget): + self._widget = widget + + def change(self): + self._widget.change() + + def update(self, win): + pass -- cgit