Skip to content

Commit

Permalink
fix more lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
DataBoyTX committed Jan 17, 2025
1 parent 886f23d commit 0d6d2f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions graphistry/PlotterBase.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def __init__(self, *args: Any, **kwargs: Any) -> None:
# Integrations
self._bolt_driver : Any = None
self._tigergraph : Any = None
self._spannergraph: SpannerGraph = None
self._spannergraph: Any = None

# feature engineering
self._node_embedding = None
Expand Down Expand Up @@ -2597,7 +2597,7 @@ def spanner_query_to_df(self: Plottable, query: str) -> pd.DataFrame:
else:
logger.warning('PyGraphistry._config["spanner"] is None')

res = res.spanner_init(PyGraphistry._config["spanner"])
res = res.spanner_init(PyGraphistry._config["spanner"]) # type: ignore[attr-defined]

return res._spannergraph.query_to_df(query)

Expand Down

0 comments on commit 0d6d2f3

Please sign in to comment.