[core/widget] remove module from widget initializer

This commit is contained in:
tobi-wan-kenobi 2020-05-18 12:59:47 +02:00
parent fbbd95b7a8
commit e359c75603
3 changed files with 5 additions and 3 deletions

View file

@ -6,10 +6,10 @@ import util.format
class Widget(util.store.Store, core.input.Object):
def __init__(self, full_text="", name=None, module=None):
def __init__(self, full_text="", name=None):
super(Widget, self).__init__()
self.__full_text = full_text
self.module = module
self.module = None
self.name = name
@property