Skip to content

Commit

Permalink
ui: Re-add per-module imports
Browse files Browse the repository at this point in the history
  • Loading branch information
kleidis committed Oct 21, 2024
1 parent 26de19b commit 17a0ad9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions ui/finish_page.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

from imports import *
from main import Logic as main
from header import Header
from PyQt6.QtWidgets import QWidget, QVBoxLayout, QLabel, QPushButton, QHBoxLayout
from PyQt6.QtCore import Qt
from main import Main as main
from ui.header import Header

# Finish page
class FinishPage(QWidget):
Expand Down
4 changes: 2 additions & 2 deletions ui/header.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from imports import *

from PyQt6.QtWidgets import QVBoxLayout, QLabel
from PyQt6.QtCore import Qt
class Header():
def header(self):
# Header Layout
Expand Down

0 comments on commit 17a0ad9

Please sign in to comment.