From eeb45b61edd4f92ae98417a401b6eeab2d2a9eed Mon Sep 17 00:00:00 2001 From: dandds Date: Tue, 31 Jul 2018 08:49:00 -0400 Subject: [PATCH] fix lint errors --- atst/domain/workspaces.py | 3 --- atst/handlers/request_new.py | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/atst/domain/workspaces.py b/atst/domain/workspaces.py index ca848425..b4cc85b8 100644 --- a/atst/domain/workspaces.py +++ b/atst/domain/workspaces.py @@ -1,6 +1,3 @@ -import tornado.gen - - class Projects(object): def __init__(self): diff --git a/atst/handlers/request_new.py b/atst/handlers/request_new.py index e43e6ab3..67c24585 100644 --- a/atst/handlers/request_new.py +++ b/atst/handlers/request_new.py @@ -50,7 +50,7 @@ class RequestNew(BaseHandler): ) if jedi_flow.validate(): - request = jedi_flow.create_or_update_request() + jedi_flow.create_or_update_request() valid = yield jedi_flow.validate_warnings() if valid: if jedi_flow.next_screen > len(jedi_flow.screens):