summaryrefslogtreecommitdiff
path: root/asciifarm/client/display/widimp.py
diff options
context:
space:
mode:
authortroido <troido@protonmail.com>2019-09-18 12:07:58 +0200
committertroido <troido@protonmail.com>2019-09-18 12:07:58 +0200
commitb95a08c303c08d955142312a72f0e51a5edcffdf (patch)
tree891e612690f6618f85b48dda30a6b89bfa23bf56 /asciifarm/client/display/widimp.py
parente2ecd2b2c5b6bc2bc1dbce6f669c96707683313d (diff)
cleanup!
Diffstat (limited to 'asciifarm/client/display/widimp.py')
-rw-r--r--asciifarm/client/display/widimp.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/asciifarm/client/display/widimp.py b/asciifarm/client/display/widimp.py
deleted file mode 100644
index 145aa6b..0000000
--- a/asciifarm/client/display/widimp.py
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-class WidImp:
-
- """widget implementation"""
-
- _widget = None
-
- def setWidget(self, widget):
- self._widget = widget
- self.change()
-
- def change(self):
- if self._widget is not None:
- self._widget.change()
-
- def update(self, win):
- pass