From 8cacf9f5c31bcac03497b4c3e0f0e794844d7e42 Mon Sep 17 00:00:00 2001 From: joaoandre-avaiga Date: Fri, 27 Sep 2024 01:25:49 +0000 Subject: [PATCH] Update config.pyi --- taipy/common/config/config.pyi | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/taipy/common/config/config.pyi b/taipy/common/config/config.pyi index 2bfbabd9f..d9a53fa7e 100644 --- a/taipy/common/config/config.pyi +++ b/taipy/common/config/config.pyi @@ -8,6 +8,21 @@ # Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on # an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the # specific language governing permissions and limitations under the License. +import json +from datetime import timedelta +from typing import Any, Callable, Dict, List, Optional, Union + +from taipy.common.config._config import _Config +from taipy.core.config import CoreSection, DataNodeConfig, JobConfig, ScenarioConfig, TaskConfig + +from .checker.issue_collector import IssueCollector +from .common._classproperty import _Classproperty +from .common._config_blocker import _ConfigBlocker +from .common.frequency import Frequency +from .common.scope import Scope +from .global_app.global_app_config import GlobalAppConfig +from .section import Section +from .unique_section import UniqueSection class Config: """Singleton class that manages the configuration of a Taipy application.