Replace # flake8: noqa with # noqa

The former syntax is actually a mis-use and rejected since Flake8 3.6
[1].

[1] https://gitlab.com/pycqa/flake8/merge_requests/219
This commit is contained in:
Chih-Hsuan Yen 2019-10-27 20:41:22 +08:00
commit 18173a5951
No known key found for this signature in database
GPG key ID: 0453A6CA23C56315
7 changed files with 69 additions and 69 deletions

View file

@ -1,6 +1,6 @@
from __future__ import unicode_literals
from .models import BaseModel, BaseBackend, moto_api_backend # flake8: noqa
from .models import BaseModel, BaseBackend, moto_api_backend # noqa
from .responses import ActionAuthenticatorMixin
moto_api_backends = {"global": moto_api_backend}