🐛 Small fixes

This commit is contained in:
GeoffreyCoulaud
2023-05-23 17:41:11 +02:00
parent a11569014d
commit 2b8c594a50
2 changed files with 4 additions and 1 deletions

View File

@@ -19,6 +19,7 @@ configure_file(
install_subdir('importer', install_dir: moduledir)
install_subdir('importers', install_dir: moduledir)
install_subdir('utils', install_dir: moduledir)
install_subdir('store', install_dir: moduledir)
install_data(
[
'main.py',

View File

@@ -4,13 +4,15 @@ from gi.repository import GObject
import src.shared as shared
from src.game import Game
from src.store.managers.manager import Manager
from src.utils.task import Task
from store.managers.manager import Manager
class Pipeline(GObject.Object):
"""Class representing a set of managers for a game"""
__gtype_name__ = "Pipeline"
game: Game
waiting: set[Manager]