mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-05-19 02:49:21 +02:00
Fix linter
This commit is contained in:
parent
23cb5681ea
commit
155e7367c1
3 changed files with 3 additions and 5 deletions
|
@ -71,4 +71,3 @@ class RdapAPITest(TestCase):
|
||||||
self.assertContains(response, "rdap")
|
self.assertContains(response, "rdap")
|
||||||
response_object = json.loads(response.content)
|
response_object = json.loads(response.content)
|
||||||
self.assertIn("rdapConformance", response_object)
|
self.assertIn("rdapConformance", response_object)
|
||||||
|
|
||||||
|
|
|
@ -103,8 +103,7 @@ def available(request, domain=""):
|
||||||
@require_http_methods(["GET"])
|
@require_http_methods(["GET"])
|
||||||
@login_not_required
|
@login_not_required
|
||||||
def rdap(request, domain=""):
|
def rdap(request, domain=""):
|
||||||
"""TODO: Write description
|
"""TODO: Write description"""
|
||||||
"""
|
|
||||||
Domain = apps.get_model("registrar.Domain")
|
Domain = apps.get_model("registrar.Domain")
|
||||||
domain = request.GET.get("domain", "")
|
domain = request.GET.get("domain", "")
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue