From 0edbebe67c9899cc2dddf99b0879943a96e9bb93 Mon Sep 17 00:00:00 2001 From: Leo Meyerovich Date: Thu, 28 Nov 2024 22:32:17 -0800 Subject: [PATCH] fix(remote mode): docstr cascade on _dataset_id --- graphistry/compute/chain_remote.py | 2 +- graphistry/compute/python_remote.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/graphistry/compute/chain_remote.py b/graphistry/compute/chain_remote.py index 6cf2db9570..c9df0b26ee 100644 --- a/graphistry/compute/chain_remote.py +++ b/graphistry/compute/chain_remote.py @@ -220,7 +220,7 @@ def chain_remote( :param api_token: Optional JWT token. If not provided, refreshes JWT and uses that. :type api_token: Optional[str] - :param dataset_id: Optional dataset_id. If not provided, will uplaod current data, store that dataset_id, and run GFQL against that. + :param dataset_id: Optional dataset_id. If not provided, will fallback to self._dataset_id. If not provided, will upload current data, store that dataset_id, and run GFQL against that. :type dataset_id: Optional[str] :param output_type: Whether to return nodes and edges ("all", default), Plottable with just nodes ("nodes"), or Plottable with just edges ("edges"). For just a dataframe of the resultant graph shape (output_type="shape"), use instead chain_remote_shape(). diff --git a/graphistry/compute/python_remote.py b/graphistry/compute/python_remote.py index 87b9750e64..5a04a1949a 100644 --- a/graphistry/compute/python_remote.py +++ b/graphistry/compute/python_remote.py @@ -25,7 +25,7 @@ def python_remote( :param api_token: Optional JWT token. If not provided, refreshes JWT and uses that. :type api_token: Optional[str] - :param dataset_id: Optional dataset_id. If not provided, will uplaod current data, store that dataset_id, and run GFQL against that. + :param dataset_id: Optional dataset_id. If not provided, will fallback to self._dataset_id. If not defined, will upload current data, store that dataset_id, and run code against that. :type dataset_id: Optional[str] :param engine: Override which run mode GFQL uses. Defaults to "cudf".