Skip to content

Commit

Permalink
chore: fix linting errors
Browse files Browse the repository at this point in the history
Signed-off-by: Akiff Manji <akiff.manji@quartech.com>
  • Loading branch information
amanji committed Jan 31, 2024
1 parent c2b1821 commit f9a2b5c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion rpc/integration/tests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def send_drpc_response(self, **kwargs):
@fail_if_not_ok("Failed to get DRPC record list")
def get_drpc_records(self, **kwargs):
"""Get DRPC record list."""
return get(self.url, f"/drpc/records", params=kwargs)
return get(self.url, "/drpc/records", params=kwargs)

@unwrap_json_response
@fail_if_not_ok("Failed to get DRPC record")
Expand Down
1 change: 0 additions & 1 deletion rpc/integration/tests/test_rpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import time

from . import Agent, BOB, ALICE
from unittest.mock import patch

rpc_request = {"jsonrpc": "2.0", "method": "add", "params": [1, 2], "id": 1}
rpc_response = {"jsonrpc": "2.0", "result": 3, "id": 1}
Expand Down

0 comments on commit f9a2b5c

Please sign in to comment.