Skip to content

Commit

Permalink
Pylint code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
audaciouscode committed Aug 1, 2017
1 parent 1918d7f commit 3e5547d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion 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

Expand All @@ -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)
Expand Down

0 comments on commit 3e5547d

Please sign in to comment.