Skip to content

Commit

Permalink
revert accidental change
Browse files Browse the repository at this point in the history
  • Loading branch information
bh2smith committed May 11, 2024
1 parent 9554721 commit 108d727
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dune_client/api/execution.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def get_execution_results_csv(
return self._get_execution_results_csv_by_url(url=url, params=params)

def _get_execution_results_by_url(
self, url: str, params: Optional[Dict[str, Any]] = None, job_id=None
self, url: str, params: Optional[Dict[str, Any]] = None
) -> ResultsResponse:
"""
GET results from Dune API with a given URL. This is particularly useful for pagination.
Expand All @@ -141,7 +141,7 @@ def _get_execution_results_by_url(
result = ResultsResponse.from_dict(response_json)
if result.state == ExecutionState.PARTIAL:
self.logger.warning(
f"execution {job_id} resulted in a partial result set (i.e. results too large)."
f"execution {result.execution_id} resulted in a partial result set (i.e. results too large)."
)
return result
except KeyError as err:
Expand Down

0 comments on commit 108d727

Please sign in to comment.