Skip to content

Commit d644d04

Browse files
committed
Remove unused parameter
1 parent 3e2d7e4 commit d644d04

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

graphdatascience/query_runner/aura_db_query_runner.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33

44
from pandas import DataFrame
55

6-
from ..call_parameters import CallParameters
7-
from .gds_arrow_client import GdsArrowClient
8-
from .query_runner import QueryRunner
96
from graphdatascience.query_runner.graph_constructor import GraphConstructor
107
from graphdatascience.server_version.server_version import ServerVersion
8+
from .gds_arrow_client import GdsArrowClient
9+
from .query_runner import QueryRunner
10+
from ..call_parameters import CallParameters
1111

1212

1313
class AuraDbQueryRunner(QueryRunner):
@@ -47,7 +47,7 @@ def call_procedure(
4747
params = CallParameters()
4848

4949
if AuraDbQueryRunner.GDS_REMOTE_PROJECTION_PROC_NAME == endpoint:
50-
return self._remote_projection(endpoint, params, yields, database, logging, custom_error)
50+
return self._remote_projection(endpoint, params, yields, database, logging)
5151

5252
elif ".write" in endpoint and self.is_remote_projected_graph(params["graph_name"]):
5353
return self._remote_write_back(endpoint, params, yields, database, logging, custom_error)
@@ -103,7 +103,6 @@ def _remote_projection(
103103
yields: Optional[List[str]] = None,
104104
database: Optional[str] = None,
105105
logging: bool = False,
106-
custom_error: bool = True,
107106
) -> DataFrame:
108107
self._inject_connection_parameters(params)
109108
return self._db_query_runner.call_procedure(endpoint, params, yields, database, logging, False)

0 commit comments

Comments
 (0)