sutro 0.1.22__tar.gz → 0.1.23__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.
Potentially problematic release.
This version of sutro might be problematic. Click here for more details.
- {sutro-0.1.22 → sutro-0.1.23}/PKG-INFO +1 -1
- {sutro-0.1.22 → sutro-0.1.23}/pyproject.toml +1 -1
- {sutro-0.1.22 → sutro-0.1.23}/sutro/sdk.py +1 -9
- {sutro-0.1.22 → sutro-0.1.23}/.gitignore +0 -0
- {sutro-0.1.22 → sutro-0.1.23}/LICENSE +0 -0
- {sutro-0.1.22 → sutro-0.1.23}/README.md +0 -0
- {sutro-0.1.22 → sutro-0.1.23}/sutro/__init__.py +0 -0
- {sutro-0.1.22 → sutro-0.1.23}/sutro/cli.py +0 -0
|
@@ -875,15 +875,7 @@ class Sutro:
|
|
|
875
875
|
response_data = response.json()
|
|
876
876
|
results_df = pl.DataFrame(response_data["results"])
|
|
877
877
|
|
|
878
|
-
|
|
879
|
-
if len(results_df.columns ) == 1:
|
|
880
|
-
# Default column when API is only returning a list, and we construct the df
|
|
881
|
-
# from that
|
|
882
|
-
original_results_column = 'column_0'
|
|
883
|
-
else:
|
|
884
|
-
original_results_column = 'outputs'
|
|
885
|
-
|
|
886
|
-
results_df = results_df.rename({original_results_column: output_column})
|
|
878
|
+
results_df = results_df.rename({'outputs': output_column})
|
|
887
879
|
|
|
888
880
|
# Ordering inputs col first seems most logical/useful
|
|
889
881
|
column_config = [
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|