Skip to content

Commit 1266834

Browse files
committed
run black
1 parent eb1d125 commit 1266834

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

crytic_compile/platform/etherscan.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,9 @@ def compile(self, crytic_compile: "CryticCompile", **kwargs: str) -> None:
259259
if not only_bytecode:
260260
if "polygon" in etherscan_url:
261261
# build object with headers, then send request
262-
new_etherscan_url = urllib.request.Request(etherscan_url,headers={"User-Agent": "Mozilla/5.0"})
262+
new_etherscan_url = urllib.request.Request(
263+
etherscan_url, headers={"User-Agent": "Mozilla/5.0"}
264+
)
263265
with urllib.request.urlopen(new_etherscan_url) as response:
264266
html = response.read()
265267
else:

0 commit comments

Comments
 (0)