🎨 Using absolute imports

This commit is contained in:
GeoffreyCoulaud
2023-05-19 20:40:33 +02:00
parent 56c110ffa2
commit a176b33241
18 changed files with 59 additions and 70 deletions

View File

@@ -25,12 +25,13 @@ from gi.repository import Adw, Gio, GLib, Gtk
# pylint: disable=unused-import
from . import shared
from .bottles_importer import bottles_installed
from .create_dialog import create_dialog
from .heroic_importer import heroic_installed
from .itch_importer import itch_installed
from .lutris_importer import lutris_cache_exists, lutris_installed
from .steam_importer import steam_installed
# TODO use the new sources
from cartridges.importers.bottles_importer import bottles_installed
from cartridges.importers.heroic_importer import heroic_installed
from cartridges.importers.itch_importer import itch_installed
from cartridges.importers.lutris_importer import lutris_cache_exists, lutris_installed
from cartridges.importers.steam_importer import steam_installed
from cartridges.utils.create_dialog import create_dialog
@Gtk.Template(resource_path="/hu/kramo/Cartridges/gtk/preferences.ui")