Skip to content
Snippets Groups Projects
Commit d5d264c2 authored by Timothe Jost's avatar Timothe Jost
Browse files

fix typo

parent 49dd60ae
No related branches found
No related tags found
No related merge requests found
Pipeline #152682 passed
__version__ = "0.0.79"
__version__ = "0.0.80"
from . import loggs
from .pipes import *
......
......@@ -834,7 +834,7 @@ def create_celery_app(conf_path, app_name="pypelines", v_host=None) -> "Celery |
logger.error(f"No handshake result. All workers are busy ? {e}")
return False
def single_worker_start(self: Celery):
def single_worker_start(self: "Celery"):
thread = CeleryWorkerThread(self)
thread.start()
......@@ -909,7 +909,7 @@ def create_celery_app(conf_path, app_name="pypelines", v_host=None) -> "Celery |
class CeleryWorkerThread(Thread):
def __init__(self, app: Celery):
def __init__(self, app: "Celery"):
super().__init__()
self.app = app
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment