From 98a9075ab2a8ee348975222f21c7f37c06931439 Mon Sep 17 00:00:00 2001 From: riibeirogabriel Date: Sat, 15 May 2021 18:14:21 -0300 Subject: [PATCH] fixes --- learning_orchestra_client/{util => _util}/__init__.py | 0 learning_orchestra_client/{util => _util}/_entity_reader.py | 0 learning_orchestra_client/{util => _util}/_response_treat.py | 0 learning_orchestra_client/builder/builder.py | 4 ++-- learning_orchestra_client/dataset/_dataset.py | 4 ++-- learning_orchestra_client/evaluate/_evaluate.py | 4 ++-- learning_orchestra_client/explore/_explore.py | 4 ++-- learning_orchestra_client/explore/histogram.py | 4 ++-- learning_orchestra_client/function/python.py | 4 ++-- learning_orchestra_client/model/_model.py | 4 ++-- learning_orchestra_client/predict/_predict.py | 4 ++-- learning_orchestra_client/train/_train.py | 4 ++-- learning_orchestra_client/transform/_transform.py | 4 ++-- learning_orchestra_client/transform/data_type.py | 4 ++-- learning_orchestra_client/transform/projection.py | 4 ++-- 15 files changed, 24 insertions(+), 24 deletions(-) rename learning_orchestra_client/{util => _util}/__init__.py (100%) rename learning_orchestra_client/{util => _util}/_entity_reader.py (100%) rename learning_orchestra_client/{util => _util}/_response_treat.py (100%) diff --git a/learning_orchestra_client/util/__init__.py b/learning_orchestra_client/_util/__init__.py similarity index 100% rename from learning_orchestra_client/util/__init__.py rename to learning_orchestra_client/_util/__init__.py diff --git a/learning_orchestra_client/util/_entity_reader.py b/learning_orchestra_client/_util/_entity_reader.py similarity index 100% rename from learning_orchestra_client/util/_entity_reader.py rename to learning_orchestra_client/_util/_entity_reader.py diff --git a/learning_orchestra_client/util/_response_treat.py b/learning_orchestra_client/_util/_response_treat.py similarity index 100% rename from learning_orchestra_client/util/_response_treat.py rename to learning_orchestra_client/_util/_response_treat.py diff --git a/learning_orchestra_client/builder/builder.py b/learning_orchestra_client/builder/builder.py index 5d8fc86..ae229cc 100644 --- a/learning_orchestra_client/builder/builder.py +++ b/learning_orchestra_client/builder/builder.py @@ -1,6 +1,6 @@ from learning_orchestra_client.observe.observe import Observer -from learning_orchestra_client.util._response_treat import ResponseTreat -from learning_orchestra_client.util._entity_reader import EntityReader +from learning_orchestra_client._util._response_treat import ResponseTreat +from learning_orchestra_client._util._entity_reader import EntityReader import requests from typing import Union diff --git a/learning_orchestra_client/dataset/_dataset.py b/learning_orchestra_client/dataset/_dataset.py index a8a3a8f..ff01bf2 100644 --- a/learning_orchestra_client/dataset/_dataset.py +++ b/learning_orchestra_client/dataset/_dataset.py @@ -1,6 +1,6 @@ from learning_orchestra_client.observe.observe import Observer -from learning_orchestra_client.util._response_treat import ResponseTreat -from learning_orchestra_client.util._entity_reader import EntityReader +from learning_orchestra_client._util._response_treat import ResponseTreat +from learning_orchestra_client._util._entity_reader import EntityReader import requests from typing import Union diff --git a/learning_orchestra_client/evaluate/_evaluate.py b/learning_orchestra_client/evaluate/_evaluate.py index f00f478..3b7a7cf 100644 --- a/learning_orchestra_client/evaluate/_evaluate.py +++ b/learning_orchestra_client/evaluate/_evaluate.py @@ -1,6 +1,6 @@ from learning_orchestra_client.observe.observe import Observer -from learning_orchestra_client.util._response_treat import ResponseTreat -from learning_orchestra_client.util._entity_reader import EntityReader +from learning_orchestra_client._util._response_treat import ResponseTreat +from learning_orchestra_client._util._entity_reader import EntityReader import requests from typing import Union diff --git a/learning_orchestra_client/explore/_explore.py b/learning_orchestra_client/explore/_explore.py index 6dce7e8..0a9ceb1 100644 --- a/learning_orchestra_client/explore/_explore.py +++ b/learning_orchestra_client/explore/_explore.py @@ -1,6 +1,6 @@ from learning_orchestra_client.observe.observe import Observer -from learning_orchestra_client.util._response_treat import ResponseTreat -from learning_orchestra_client.util._entity_reader import EntityReader +from learning_orchestra_client._util._response_treat import ResponseTreat +from learning_orchestra_client._util._entity_reader import EntityReader import requests from typing import Union diff --git a/learning_orchestra_client/explore/histogram.py b/learning_orchestra_client/explore/histogram.py index 50b85f5..ff42b04 100644 --- a/learning_orchestra_client/explore/histogram.py +++ b/learning_orchestra_client/explore/histogram.py @@ -1,8 +1,8 @@ from learning_orchestra_client.observe.observe import Observer -from learning_orchestra_client.util._response_treat import ResponseTreat +from learning_orchestra_client._util._response_treat import ResponseTreat import requests from typing import Union -from learning_orchestra_client.util._entity_reader import EntityReader +from learning_orchestra_client._util._entity_reader import EntityReader class ExploreHistogram: diff --git a/learning_orchestra_client/function/python.py b/learning_orchestra_client/function/python.py index 64e6f3a..b51df30 100644 --- a/learning_orchestra_client/function/python.py +++ b/learning_orchestra_client/function/python.py @@ -1,6 +1,6 @@ from learning_orchestra_client.observe.observe import Observer -from learning_orchestra_client.util._response_treat import ResponseTreat -from learning_orchestra_client.util._entity_reader import EntityReader +from learning_orchestra_client._util._response_treat import ResponseTreat +from learning_orchestra_client._util._entity_reader import EntityReader import requests from typing import Union diff --git a/learning_orchestra_client/model/_model.py b/learning_orchestra_client/model/_model.py index f031149..a9a79fd 100644 --- a/learning_orchestra_client/model/_model.py +++ b/learning_orchestra_client/model/_model.py @@ -1,6 +1,6 @@ from learning_orchestra_client.observe.observe import Observer -from learning_orchestra_client.util._response_treat import ResponseTreat -from learning_orchestra_client.util._entity_reader import EntityReader +from learning_orchestra_client._util._response_treat import ResponseTreat +from learning_orchestra_client._util._entity_reader import EntityReader import requests from typing import Union diff --git a/learning_orchestra_client/predict/_predict.py b/learning_orchestra_client/predict/_predict.py index 528fad7..33a46ac 100644 --- a/learning_orchestra_client/predict/_predict.py +++ b/learning_orchestra_client/predict/_predict.py @@ -1,6 +1,6 @@ from learning_orchestra_client.observe.observe import Observer -from learning_orchestra_client.util._response_treat import ResponseTreat -from learning_orchestra_client.util._entity_reader import EntityReader +from learning_orchestra_client._util._response_treat import ResponseTreat +from learning_orchestra_client._util._entity_reader import EntityReader import requests from typing import Union diff --git a/learning_orchestra_client/train/_train.py b/learning_orchestra_client/train/_train.py index ed3d7b7..f8fd2f0 100644 --- a/learning_orchestra_client/train/_train.py +++ b/learning_orchestra_client/train/_train.py @@ -1,6 +1,6 @@ from learning_orchestra_client.observe.observe import Observer -from learning_orchestra_client.util._response_treat import ResponseTreat -from learning_orchestra_client.util._entity_reader import EntityReader +from learning_orchestra_client._util._response_treat import ResponseTreat +from learning_orchestra_client._util._entity_reader import EntityReader import requests from typing import Union diff --git a/learning_orchestra_client/transform/_transform.py b/learning_orchestra_client/transform/_transform.py index dadf909..46aeb47 100644 --- a/learning_orchestra_client/transform/_transform.py +++ b/learning_orchestra_client/transform/_transform.py @@ -1,6 +1,6 @@ from learning_orchestra_client.observe.observe import Observer -from learning_orchestra_client.util._response_treat import ResponseTreat -from learning_orchestra_client.util._entity_reader import EntityReader +from learning_orchestra_client._util._response_treat import ResponseTreat +from learning_orchestra_client._util._entity_reader import EntityReader import requests from typing import Union diff --git a/learning_orchestra_client/transform/data_type.py b/learning_orchestra_client/transform/data_type.py index 1be4dfe..6fb9f67 100644 --- a/learning_orchestra_client/transform/data_type.py +++ b/learning_orchestra_client/transform/data_type.py @@ -1,5 +1,5 @@ -from learning_orchestra_client.util._response_treat import ResponseTreat -from learning_orchestra_client.util._entity_reader import EntityReader +from learning_orchestra_client._util._response_treat import ResponseTreat +from learning_orchestra_client._util._entity_reader import EntityReader from learning_orchestra_client.observe.observe import Observer import requests from typing import Union diff --git a/learning_orchestra_client/transform/projection.py b/learning_orchestra_client/transform/projection.py index b4bb8d1..5c02de5 100644 --- a/learning_orchestra_client/transform/projection.py +++ b/learning_orchestra_client/transform/projection.py @@ -1,6 +1,6 @@ -from learning_orchestra_client.util._response_treat import ResponseTreat +from learning_orchestra_client._util._response_treat import ResponseTreat from learning_orchestra_client.observe.observe import Observer -from learning_orchestra_client.util._entity_reader import EntityReader +from learning_orchestra_client._util._entity_reader import EntityReader import requests from typing import Union