From 2b8c594a50b948f900a76cb2e58e021cbde92fb3 Mon Sep 17 00:00:00 2001 From: GeoffreyCoulaud Date: Tue, 23 May 2023 17:41:11 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Small=20fixes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/meson.build | 1 + src/store/store.py | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/meson.build b/src/meson.build index 4a48b31..5f47002 100644 --- a/src/meson.build +++ b/src/meson.build @@ -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', diff --git a/src/store/store.py b/src/store/store.py index eb36374..b3ff3a9 100644 --- a/src/store/store.py +++ b/src/store/store.py @@ -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]