rustat-python-api 0.4.1__tar.gz → 0.4.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {rustat-python-api-0.4.1/rustat_python_api.egg-info → rustat-python-api-0.4.2}/PKG-INFO +1 -1
- {rustat-python-api-0.4.1 → rustat-python-api-0.4.2}/rustat_python_api/models_api.py +3 -3
- {rustat-python-api-0.4.1 → rustat-python-api-0.4.2/rustat_python_api.egg-info}/PKG-INFO +1 -1
- {rustat-python-api-0.4.1 → rustat-python-api-0.4.2}/setup.py +1 -1
- {rustat-python-api-0.4.1 → rustat-python-api-0.4.2}/LICENSE +0 -0
- {rustat-python-api-0.4.1 → rustat-python-api-0.4.2}/README.md +0 -0
- {rustat-python-api-0.4.1 → rustat-python-api-0.4.2}/pyproject.toml +0 -0
- {rustat-python-api-0.4.1 → rustat-python-api-0.4.2}/rustat_python_api/__init__.py +0 -0
- {rustat-python-api-0.4.1 → rustat-python-api-0.4.2}/rustat_python_api/config.py +0 -0
- {rustat-python-api-0.4.1 → rustat-python-api-0.4.2}/rustat_python_api/parser.py +0 -0
- {rustat-python-api-0.4.1 → rustat-python-api-0.4.2}/rustat_python_api/processing.py +0 -0
- {rustat-python-api-0.4.1 → rustat-python-api-0.4.2}/rustat_python_api/urls.py +0 -0
- {rustat-python-api-0.4.1 → rustat-python-api-0.4.2}/rustat_python_api.egg-info/SOURCES.txt +0 -0
- {rustat-python-api-0.4.1 → rustat-python-api-0.4.2}/rustat_python_api.egg-info/dependency_links.txt +0 -0
- {rustat-python-api-0.4.1 → rustat-python-api-0.4.2}/rustat_python_api.egg-info/requires.txt +0 -0
- {rustat-python-api-0.4.1 → rustat-python-api-0.4.2}/rustat_python_api.egg-info/top_level.txt +0 -0
- {rustat-python-api-0.4.1 → rustat-python-api-0.4.2}/setup.cfg +0 -0
|
@@ -42,10 +42,10 @@ class DynamoLab:
|
|
|
42
42
|
if inplace_column is None:
|
|
43
43
|
raise ValueError("inplace_column must be specified if inplace is True")
|
|
44
44
|
if inplace:
|
|
45
|
-
data[inplace_column] = response.json()["prediction"]
|
|
46
|
-
|
|
45
|
+
data[inplace_column] = np.array(response.json()["prediction"])
|
|
46
|
+
else:
|
|
47
47
|
df = data.copy()
|
|
48
|
-
df[inplace_column] = response.json()["prediction"]
|
|
48
|
+
df[inplace_column] = np.array(response.json()["prediction"])
|
|
49
49
|
return df
|
|
50
50
|
|
|
51
51
|
if return_type == "json":
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rustat-python-api-0.4.1 → rustat-python-api-0.4.2}/rustat_python_api.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
{rustat-python-api-0.4.1 → rustat-python-api-0.4.2}/rustat_python_api.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|