1
0
Fork 0
mirror of synced 2024-06-02 02:34:40 +12:00

ImageManager: Remove leading space

This commit is contained in:
loathingKernel 2023-06-18 03:26:02 +03:00
parent adaf90f0a8
commit d11faa5263
No known key found for this signature in database
GPG key ID: CE0C72D0B53821FD

View file

@ -61,7 +61,7 @@ class ImageManager(QObject):
def run(self):
self.func(self.updates, self.json_data, self.game)
logger.debug(f" Emitting singal for {self.game.app_name} ({self.game.app_title})")
logger.debug(f"Emitting singal for {self.game.app_name} ({self.game.app_title})")
self.signals.completed.emit(self.game)
def __init__(self, signals: GlobalSignals, core: LegendaryCore):