From 3e5547db8e79748b6600ed14792bb4e62f370151 Mon Sep 17 00:00:00 2001 From: "Chris J. Karr" Date: Tue, 1 Aug 2017 14:28:58 +0000 Subject: [PATCH] Pylint code cleanup --- test_templatetags.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test_templatetags.py b/test_templatetags.py index 91e6254..47fee94 100644 --- a/test_templatetags.py +++ b/test_templatetags.py @@ -1,3 +1,5 @@ +# pylint: disable=no-member, line-too-long + from django.template.loader import render_to_string from django.test import TestCase @@ -9,7 +11,7 @@ def setUp(self): def test_tests_working(self): context = { - 'source': DataSource.objects.get(identifier='points-hz-test') + 'source': DataSource.objects.get(identifier='points-hz-test') } result = render_to_string('tests/point_hz_test.txt', context)