style:Formatted codebase to pep8

This commit is contained in:
Benex254
2024-08-05 09:46:56 +03:00
parent 5bdebcae2c
commit fb858e8d04
64 changed files with 816 additions and 755 deletions

View File

@@ -1,12 +1,11 @@
from anixstream.View import HelpScreenView
from anixstream.Model import HelpScreenModel
from ..Model import HelpScreenModel
from ..View import HelpScreenView
class HelpScreenController:
"""The help screen controller
"""
def __init__(self, model:HelpScreenModel):
"""The help screen controller"""
def __init__(self, model: HelpScreenModel):
self.model = model
self.view = HelpScreenView(controller=self, model=self.model)