Skip to content

Commit

Permalink
[lightapi/python] task: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
AnthonyLaw committed Jun 28, 2023
1 parent 5cfab20 commit e60197d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lightapi/python/tests/connector/test_BasicConnector.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ async def test_can_issue_get_with_named_property(server): # pylint: disable=red
assert 152 == network_identifier


async def _assert_can_issue_request(server, action, url_path):
async def _assert_can_issue_request(server, action, url_path): # pylint: disable=redefined-outer-name
# Arrange:
connector = BasicConnector(server.make_url(''))

Expand All @@ -196,7 +196,7 @@ async def _assert_can_issue_request(server, action, url_path):
assert {'message': 'hello world', 'action': action} == response_json


async def _assert_can_issue_request_with_named_property(server, action, url_path):
async def _assert_can_issue_request_with_named_property(server, action, url_path): # pylint: disable=redefined-outer-name
# Arrange:
connector = BasicConnector(server.make_url(''))

Expand Down
2 changes: 1 addition & 1 deletion lightapi/python/tests/connector/test_NemConnector.py
Original file line number Diff line number Diff line change
Expand Up @@ -500,4 +500,4 @@ async def test_can_query_block_at(server): # pylint: disable=redefined-outer-na
)
) == block

# endregion
# endregion

0 comments on commit e60197d

Please sign in to comment.