Keep flake happy on int/long test code

This commit is contained in:
medmunds
2017-09-14 11:54:30 -07:00
parent 3b9cb963ef
commit 8cad1a6367
2 changed files with 2 additions and 2 deletions

View File

@@ -21,7 +21,7 @@ from .mock_requests_backend import RequestsBackendMockAPITestCase, SessionSharin
from .utils import sample_image_content, sample_image_path, SAMPLE_IMAGE_FILENAME, AnymailTestMixin
# noinspection PyUnresolvedReferences
longtype = int if six.PY3 else long
longtype = int if six.PY3 else long # NOQA: F821
@override_settings(EMAIL_BACKEND='anymail.backends.sendgrid_v2.EmailBackend',