diff --git a/web_app/contract_tools/airdrop.py b/web_app/contract_tools/airdrop.py index af34764..f101f1d 100644 --- a/web_app/contract_tools/airdrop.py +++ b/web_app/contract_tools/airdrop.py @@ -59,4 +59,5 @@ def _validate_response(data: List[dict]) -> AirdropResponseModel: recipient=item["recipient"] ) validated_items.append(validated_item) - return AirdropResponseModel(airdrops=validated_items) \ No newline at end of file + return AirdropResponseModel(airdrops=validated_items) + \ No newline at end of file diff --git a/web_app/tests/test_zklend_airdrop.py b/web_app/tests/test_zklend_airdrop.py index e186781..c2d2ebe 100644 --- a/web_app/tests/test_zklend_airdrop.py +++ b/web_app/tests/test_zklend_airdrop.py @@ -122,4 +122,5 @@ async def test_underlying_contract_id_formatting(self, zklend_airdrop): await zklend_airdrop.get_contract_airdrop(contract_id) - zklend_airdrop.api.fetch.assert_called_once_with(expected_underlying_id) \ No newline at end of file + zklend_airdrop.api.fetch.assert_called_once_with(expected_underlying_id) + \ No newline at end of file