Skip to content

Commit

Permalink
fix(remote mode): docstr cascade on _dataset_id
Browse files Browse the repository at this point in the history
  • Loading branch information
lmeyerov committed Nov 29, 2024
1 parent 3f051ae commit 0edbebe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion graphistry/compute/chain_remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -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().
Expand Down
2 changes: 1 addition & 1 deletion graphistry/compute/python_remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -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".
Expand Down

0 comments on commit 0edbebe

Please sign in to comment.