Skip to content
This repository has been archived by the owner on Jul 9, 2024. It is now read-only.

Commit

Permalink
create missing dirs in init
Browse files Browse the repository at this point in the history
  • Loading branch information
JuliusJacobitz committed May 29, 2021
1 parent ce104f0 commit 25360dd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
from tools.gui.qtkontakt import QtKontakt
from tools.gui.qtterminsuche import QtTerminsuche
from tools.its import ImpfterminService
from tools.utils import create_missing_dirs

PATH = os.path.dirname(os.path.realpath(__file__))

Expand Down Expand Up @@ -48,7 +49,9 @@ def __init__(self, pfad_fenster_layout: str = os.path.join(PATH, "tools/gui/main
"""

super().__init__()


create_missing_dirs()

# Laden der .ui Datei und Anpassungen
uic.loadUi(pfad_fenster_layout, self)
self.setWindowIcon(QIcon(os.path.join(PATH, "images/spritze.ico")))
Expand Down
Empty file added tools/__init__.py
Empty file.

0 comments on commit 25360dd

Please sign in to comment.