From dda0e2fb78cd156795f7da4fd663ec958996b8e9 Mon Sep 17 00:00:00 2001 From: Trevor Lancon <37873827+tlancon@users.noreply.github.com> Date: Mon, 7 Jun 2021 09:41:54 -0500 Subject: [PATCH] pep8 BS #2 --- apps/documentation.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/documentation.py b/apps/documentation.py index e46560b..9eb926c 100644 --- a/apps/documentation.py +++ b/apps/documentation.py @@ -8,11 +8,11 @@ class Documentation(QWidget): def __init__(self): super().__init__() - self.init_UI() + self.webEngineView = QWebEngineView() + self.init_ui() - def init_UI(self): + def init_ui(self): vbox = QVBoxLayout(self) - self.webEngineView = QWebEngineView() self.load_page() vbox.addWidget(self.webEngineView) self.setLayout(vbox)