From 10ddb6f08592c2740b966e98a6f98a5b83af1896 Mon Sep 17 00:00:00 2001 From: Michael Merickel Date: Mon, 15 Oct 2018 02:42:09 -0500 Subject: fix lint on tests --- tests/test_location.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'tests/test_location.py') diff --git a/tests/test_location.py b/tests/test_location.py index b48b7bdaa..163bb85aa 100644 --- a/tests/test_location.py +++ b/tests/test_location.py @@ -1,4 +1,6 @@ import unittest +from zope.interface import implementer +from pyramid.interfaces import ILocation class TestInside(unittest.TestCase): @@ -44,10 +46,6 @@ class TestLineage(unittest.TestCase): self.assertEqual(result, [o1]) -from pyramid.interfaces import ILocation -from zope.interface import implementer - - @implementer(ILocation) class Location(object): __name__ = __parent__ = None -- cgit v1.2.3