fix: Cleanup code to follow good practice
All checks were successful
Build Docker / Build Image (push) Successful in 2m37s
All checks were successful
Build Docker / Build Image (push) Successful in 2m37s
Add line in verify mesage mentioning the ability to set the record onchain
This commit is contained in:
@@ -13,7 +13,7 @@ async def send_domain(user, email):
|
||||
except EmailNotValidError as e:
|
||||
return "Your email is invalid"
|
||||
|
||||
response = requests.post("https://faucet.woodburn.au/api?email=" + email+"&name="+str(user) + "&key=" + os.getenv('FAUCET_KEY'))
|
||||
response = requests.post(f"https://faucet.woodburn.au/api?email={email}&name={user}&key={os.getenv('FAUCET_KEY')}")
|
||||
print(response)
|
||||
print(response.text)
|
||||
response = response.json()
|
||||
|
||||
Reference in New Issue
Block a user