From 3977597c86abdcf345e98278ad20e810fe20dd46 Mon Sep 17 00:00:00 2001 From: Azory YData Bot Date: Fri, 7 Feb 2025 11:46:14 +0000 Subject: [PATCH] fix(linting): code formatting --- examples/synthesizers/regular_existing_datasource.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/examples/synthesizers/regular_existing_datasource.py b/examples/synthesizers/regular_existing_datasource.py index 23342a54..47196e0f 100644 --- a/examples/synthesizers/regular_existing_datasource.py +++ b/examples/synthesizers/regular_existing_datasource.py @@ -1,11 +1,12 @@ import os +from ydata.sdk.datasources import DataSource +from ydata.sdk.synthesizers import RegularSynthesizer + # Authenticate to Fabric to leverage the SDK - https://docs.sdk.ydata.ai/latest/sdk/installation/ # Make sure to add your token as env variable. os.environ["YDATA_TOKEN"] = '{insert-token}' # Remove if already defined -from ydata.sdk.datasources import DataSource -from ydata.sdk.synthesizers import RegularSynthesizer # In this example, we demonstrate how to train a synthesizer from an existing RDBMS Dataset. # Make sure to follow the step-by-step gu ide to create a Dataset in Fabric's catalog: https://docs.sdk.ydata.ai/latest/get-started/create_multitable_dataset/