diff options
author | Daniel P. Berrange <berrange@redhat.com> | 2015-01-08 11:57:30 +0000 |
---|---|---|
committer | Daniel P. Berrange <berrange@redhat.com> | 2015-01-08 13:26:32 +0000 |
commit | 5e20018fbd2a732e469f46d4b3974a16cc5b5a84 (patch) | |
tree | c3a662adfb55cb195bbcb93386bf603914c6695d /nova/scheduler | |
parent | 72de6ac4f0ade6d2a3ef35d86d7d9b1ac47fd7bd (diff) | |
download | nova-5e20018fbd2a732e469f46d4b3974a16cc5b5a84.tar.gz |
remove pylint source code annotations
Since pylint testing has been removed, there is little need to
keep the source code annotations for it. If anyone wishes to
re-add pylint later, they'll have to audit all the 10's of
1000's of pylint warnings and decide which to skip. So removing
the ~20 existing annotations is no real burden.
Change-Id: Ib48a81cdf4653a0b8c5f84e2614f54419272b731
Diffstat (limited to 'nova/scheduler')
-rw-r--r-- | nova/scheduler/filters/trusted_filter.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/nova/scheduler/filters/trusted_filter.py b/nova/scheduler/filters/trusted_filter.py index 709c2cac93..4fd33f6c0e 100644 --- a/nova/scheduler/filters/trusted_filter.py +++ b/nova/scheduler/filters/trusted_filter.py @@ -112,7 +112,6 @@ class AttestationService(object): headers=headers, cert=self.cert, verify=self.verify) status_code = res.status_code - # pylint: disable=E1101 if status_code in (requests.codes.OK, requests.codes.CREATED, requests.codes.ACCEPTED, |