diff options
| author | troido <troido@protonmail.com> | 2018-09-06 15:13:37 +0200 |
|---|---|---|
| committer | troido <troido@protonmail.com> | 2018-09-06 15:13:37 +0200 |
| commit | 6c3ff03ab92c2d4493355fdbb31a7ababbba97f4 (patch) | |
| tree | 0d499be46b8404603135eab91b6a34a0293510a7 | |
| parent | c12f77caefbb9abf4678996c2c0395483c81d93f (diff) | |
actually include the superclass
| -rw-r--r-- | asciifarm/client/display/widimp.py | 14 |
1 files changed, 14 insertions, 0 deletions
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 |
