🐛 Small fixes
This commit is contained in:
@@ -19,6 +19,7 @@ configure_file(
|
|||||||
install_subdir('importer', install_dir: moduledir)
|
install_subdir('importer', install_dir: moduledir)
|
||||||
install_subdir('importers', install_dir: moduledir)
|
install_subdir('importers', install_dir: moduledir)
|
||||||
install_subdir('utils', install_dir: moduledir)
|
install_subdir('utils', install_dir: moduledir)
|
||||||
|
install_subdir('store', install_dir: moduledir)
|
||||||
install_data(
|
install_data(
|
||||||
[
|
[
|
||||||
'main.py',
|
'main.py',
|
||||||
|
|||||||
@@ -4,13 +4,15 @@ from gi.repository import GObject
|
|||||||
|
|
||||||
import src.shared as shared
|
import src.shared as shared
|
||||||
from src.game import Game
|
from src.game import Game
|
||||||
|
from src.store.managers.manager import Manager
|
||||||
from src.utils.task import Task
|
from src.utils.task import Task
|
||||||
from store.managers.manager import Manager
|
|
||||||
|
|
||||||
|
|
||||||
class Pipeline(GObject.Object):
|
class Pipeline(GObject.Object):
|
||||||
"""Class representing a set of managers for a game"""
|
"""Class representing a set of managers for a game"""
|
||||||
|
|
||||||
|
__gtype_name__ = "Pipeline"
|
||||||
|
|
||||||
game: Game
|
game: Game
|
||||||
|
|
||||||
waiting: set[Manager]
|
waiting: set[Manager]
|
||||||
|
|||||||
Reference in New Issue
Block a user