diff --git a/word_fellow/domain/export/ExportService.py b/word_fellow/domain/export/ExportService.py index 7ccf544..63674e9 100644 --- a/word_fellow/domain/export/ExportService.py +++ b/word_fellow/domain/export/ExportService.py @@ -1,7 +1,7 @@ import os import shutil -from word_fellow.infrastructure import WordFellowDB +from ...infrastructure import WordFellowDB class ExportService: diff --git a/word_fellow/domain/export/ImportService.py b/word_fellow/domain/export/ImportService.py index b507d79..9cbd873 100644 --- a/word_fellow/domain/export/ImportService.py +++ b/word_fellow/domain/export/ImportService.py @@ -1,8 +1,7 @@ import os import shutil -from word_fellow.domain.utils import FileUtils -from word_fellow.infrastructure import WordFellowDB +from ...infrastructure import WordFellowDB class ImportService: diff --git a/word_fellow/ui/dialog/settings/SettingsWindow.py b/word_fellow/ui/dialog/settings/SettingsWindow.py index b449aa1..7cc1a40 100644 --- a/word_fellow/ui/dialog/settings/SettingsWindow.py +++ b/word_fellow/ui/dialog/settings/SettingsWindow.py @@ -1,6 +1,6 @@ from PyQt5.QtWidgets import QVBoxLayout, QTabWidget, QWidget -from word_fellow.ui.dialog.settings.backup.ExportImportTab import ExportImportTab +from ....ui.dialog.settings.backup.ExportImportTab import ExportImportTab from ....domain.backup.BackupService import BackupService from ....domain.reset.ResetService import ResetService from ....domain.settings.SettingsService import SettingsService diff --git a/word_fellow/ui/dialog/settings/backup/ExportImportTab.py b/word_fellow/ui/dialog/settings/backup/ExportImportTab.py index 3768af8..735b054 100644 --- a/word_fellow/ui/dialog/settings/backup/ExportImportTab.py +++ b/word_fellow/ui/dialog/settings/backup/ExportImportTab.py @@ -3,12 +3,12 @@ from PyQt5.QtWidgets import QWidget, QGroupBox, QLineEdit, QPushButton, QHBoxLayout, QVBoxLayout, QFileDialog, \ QMessageBox -from word_fellow.domain.export.ExportService import ExportService -from word_fellow.domain.export.ImportService import ImportService -from word_fellow.infrastructure import WordFellowDB -from word_fellow.ui.common.ClickableLineEdit import ClickableLineEdit -from word_fellow.ui.util import MsgUtils -from word_fellow.ui.util.DatabaseUtils import get_test_word_fellow_db +from .....domain.export.ExportService import ExportService +from .....domain.export.ImportService import ImportService +from .....infrastructure import WordFellowDB +from .....ui.common.ClickableLineEdit import ClickableLineEdit +from .....ui.util import MsgUtils +from .....ui.util.DatabaseUtils import get_test_word_fellow_db class ExportImportTab(QWidget):