From f5a04bb52ea326c39ae027500d1779585ed7a8b6 Mon Sep 17 00:00:00 2001 From: jrobinAV Date: Mon, 26 Aug 2024 14:28:45 +0200 Subject: [PATCH] fixing core instead of orchestrator issue --- Pipfile | 1 - tools/fetch_source_files.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Pipfile b/Pipfile index 8708c3455..c97f442fe 100644 --- a/Pipfile +++ b/Pipfile @@ -31,7 +31,6 @@ opentelemetry-exporter-otlp = ">=1.20.0" opentelemetry-sdk = ">=1.20.0" pandas = "==1.3.5" pika = "==1.3.2" -pika-stubs = "==0.1.3" polars = "==1.2.1" pyarrow = "==14.0.2" pymongo = {extras = ["srv"], version = "==4.6.3"} diff --git a/tools/fetch_source_files.py b/tools/fetch_source_files.py index 77f25ae2a..a7e6d2219 100644 --- a/tools/fetch_source_files.py +++ b/tools/fetch_source_files.py @@ -336,7 +336,7 @@ def handleRemoveReadonly(func, path, exc): run_method = """ import typing as t -def run(*services: t.Union[Gui, Rest, Core], **kwargs) -> t.Optional[t.Union[Gui, Rest, Core]]: +def run(*services: t.Union[Gui, Rest, Orchestrator], **kwargs) -> t.Optional[t.Union[Gui, Rest, Orchestrator]]: \"\"\"Run one or multiple Taipy services. A Taipy service is an instance of a class that runs code as a web application.