Update todo.py

This commit is contained in:
Soykan Ertürk 2021-08-14 20:16:45 +03:00 committed by GitHub
parent 5a1addec7f
commit 05f76c0d9a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,7 +25,7 @@ class Module(core.module.Module):
self.__todos = self.count_items() self.__todos = self.count_items()
core.input.register( core.input.register(
self, button=core.input.LEFT_MOUSE, cmd="{} {}".format(self.__editor, self.__doc) self, button=core.input.LEFT_MOUSE, cmd="{} {}".format(self.__editor, self.__doc)
) )
def output(self, widget): def output(self, widget):
return str(self.__todos) return str(self.__todos)