Changed versions

This commit is contained in:
2021-11-14 12:53:09 +01:00
parent 589ef4fd4c
commit 57040f85f0
28 changed files with 304 additions and 177 deletions

View File

@@ -35,17 +35,6 @@ class ApplicationABC(ABC):
except KeyboardInterrupt:
Console.close()
def run(self):
r"""Entry point
Called by custom Application.main
"""
try:
self.configure()
self.main()
except KeyboardInterrupt:
Console.close()
async def run_async(self):
r"""Entry point