Fix lint errors

This commit is contained in:
Seamus Johnston 2022-11-17 08:26:41 -06:00
parent 2b91a3c1d1
commit eda5e9751b
No known key found for this signature in database
GPG key ID: 2F21225985069105
9 changed files with 27 additions and 23 deletions

View file

@ -4,12 +4,14 @@ communication with the registry until that integration is implemented.
"""
from datetime import datetime
def domain_check(_):
""" Is domain available for registration? """
"""Is domain available for registration?"""
return True
def domain_info(domain):
""" What does the registry know about this domain? """
"""What does the registry know about this domain?"""
return {
"name": domain,
"roid": "EXAMPLE1-REP",
@ -36,5 +38,3 @@ def domain_info(domain):
"expiration_date": datetime.today(),
"last_transfer_date": datetime.today(),
}