Skip to content

Commit

Permalink
fix(lint)
Browse files Browse the repository at this point in the history
  • Loading branch information
lmeyerov committed Nov 28, 2024
1 parent 28c144e commit 904fa93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion graphistry/PlotterBase.py
Original file line number Diff line number Diff line change
Expand Up @@ -1504,7 +1504,7 @@ def plot(
logger.debug("2. @PloatterBase plot: PyGraphistry.org_name(): {}".format(PyGraphistry.org_name()))
dataset: Optional[ArrowUploader] = None
if api_version == 1:
dataset = self.mode='json', (g, n, name, description, 'json', self._style, memoize)
dataset = self._plot_dispatch(g, n, name, description, 'json', self._style, memoize)
if skip_upload:
return dataset
info = PyGraphistry._etl1(dataset)
Expand Down
2 changes: 1 addition & 1 deletion graphistry/render/resolve_render_mode.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ def resolve_render_mode(
webbrowser.get() # Tries to find the default browser
return "browser"
except Exception:
return "url"
return "url"

0 comments on commit 904fa93

Please sign in to comment.