Remove unnecessary imports by deleting NOQA markers

This commit is contained in:
Alan Rominger
2022-09-27 20:28:09 -04:00
parent 235ed2f0d0
commit 58772d79c7
10 changed files with 27 additions and 71 deletions

View File

@@ -248,7 +248,7 @@ class APIView(views.APIView):
response['X-API-Query-Time'] = '%0.3fs' % sum(q_times)
if getattr(self, 'deprecated', False):
response['Warning'] = '299 awx "This resource has been deprecated and will be removed in a future release."' # noqa
response['Warning'] = '299 awx "This resource has been deprecated and will be removed in a future release."'
return response