Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sajanrajdev committed Oct 26, 2023
1 parent f3d8920 commit 3b846d2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion great_ape_safe/ape_api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

class ApeApis:
def init_cow(self, prod=False):
self.cow = Cow(self, prod=prod)
self.cow = Cow(self, prod=prod)
12 changes: 5 additions & 7 deletions helpers/addresses.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,10 @@
import json

ADDRESSES_ETH = {
"ebtc": {
"placeholder":"0x0"
},
"ebtc": {"placeholder": "0x0"},
"ebtc_wallets": {
"ebtc_deployer": "0xC39A1159eDd78458E7b4943fcCa45c769b0E223e",
}
},
}

ADDRESSES_SEPOLIA = {
Expand All @@ -28,11 +26,11 @@
"sorted_cdps": "0xdA3Bb1b380C7Cfd9279dC3334F6122587C8e52A9",
"hint_helpers": "0x52A6C2C30Eb6E3c9E8a0BF1479d8d81ad4c6fCE4",
"fee_recipient": "0xeAB976bBE69fE936beD9D079B4f61A19be4Cb69A",
"multi_cdp_getter": "0xE9F8c2ff6014184959b970ac7CbE7073B78C291c"
"multi_cdp_getter": "0xE9F8c2ff6014184959b970ac7CbE7073B78C291c",
},
"ebtc_wallets": {
"ebtc_deployer": "0xC39A1159eDd78458E7b4943fcCa45c769b0E223e",
}
},
}


Expand All @@ -58,7 +56,7 @@ def checksum_address_dict(addresses):
registry = DotMap(
{
"eth": checksum_address_dict(ADDRESSES_ETH),
"sepolia": checksum_address_dict(ADDRESSES_SEPOLIA)
"sepolia": checksum_address_dict(ADDRESSES_SEPOLIA),
}
)

Expand Down

0 comments on commit 3b846d2

Please sign in to comment.