Skip to content

Commit

Permalink
pep8 BS #2
Browse files Browse the repository at this point in the history
  • Loading branch information
tlancon committed Jun 7, 2021
1 parent 8b2b533 commit dda0e2f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/documentation.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit dda0e2f

Please sign in to comment.