Skip to content

Commit

Permalink
switching ordering of parameter list
Browse files Browse the repository at this point in the history
  • Loading branch information
prquinlan committed Feb 17, 2025
1 parent 64e7389 commit 12556c9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/hutch_bunny/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def main() -> None:
)

result = execute_query(
results_modifier, query_dict, logger=logger, db_manager=db_manager
query_dict, results_modifier, logger=logger, db_manager=db_manager
)
logger.debug(f"Results: {result.to_dict()}")
save_to_output(result, args.output)
Expand Down
2 changes: 1 addition & 1 deletion src/hutch_bunny/core/execute_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@


def execute_query(
results_modifier: list[dict],
query_dict: Dict,
results_modifier: list[dict],
logger: Logger,
db_manager,
) -> RquestResult:
Expand Down
2 changes: 1 addition & 1 deletion src/hutch_bunny/daemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ def main() -> None:
query_dict: dict = response.json()
# Start querying
result = execute_query(
result_modifier,
query_dict,
result_modifier,
logger=logger,
db_manager=db_manager,
)
Expand Down

0 comments on commit 12556c9

Please sign in to comment.