mirror of https://github.com/kivy/kivy.git
fix relative imports to absolute
This commit is contained in:
parent
1fc8b1dbcc
commit
12ff576e80
|
@ -7,10 +7,10 @@ Input Postprocessing
|
|||
__all__ = ('kivy_postproc_modules', )
|
||||
|
||||
import os
|
||||
from doubletap import InputPostprocDoubleTap
|
||||
from ignorelist import InputPostprocIgnoreList
|
||||
from retaintouch import InputPostprocRetainTouch
|
||||
from dejitter import InputPostprocDejitter
|
||||
from kivy.input.postproc.doubletap import InputPostprocDoubleTap
|
||||
from kivy.input.postproc.ignorelist import InputPostprocIgnoreList
|
||||
from kivy.input.postproc.retaintouch import InputPostprocRetainTouch
|
||||
from kivy.input.postproc.dejitter import InputPostprocDejitter
|
||||
|
||||
# Mapping of ID to module
|
||||
kivy_postproc_modules = {}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
from common import GraphicUnitTest
|
||||
from kivy.tests.common import GraphicUnitTest
|
||||
|
||||
|
||||
class FileChooserTestCase(GraphicUnitTest):
|
||||
|
|
|
@ -5,7 +5,7 @@ Graphics tests
|
|||
Testing the simple vertex instructions
|
||||
'''
|
||||
|
||||
from common import GraphicUnitTest
|
||||
from kivy.tests.common import GraphicUnitTest
|
||||
|
||||
|
||||
class VertexInstructionTestCase(GraphicUnitTest):
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
from common import GraphicUnitTest
|
||||
from kivy.tests.common import GraphicUnitTest
|
||||
|
||||
|
||||
class Issue609(GraphicUnitTest):
|
||||
|
|
|
@ -3,7 +3,7 @@ Anchor layout unit test
|
|||
=======================
|
||||
'''
|
||||
|
||||
from common import GraphicUnitTest
|
||||
from kivy.tests.common import GraphicUnitTest
|
||||
|
||||
|
||||
class UIXAnchorLayoutTestcase(GraphicUnitTest):
|
||||
|
|
|
@ -6,7 +6,7 @@ Order matter.
|
|||
On the screen, most of example must have the red->blue->green order.
|
||||
'''
|
||||
|
||||
from common import GraphicUnitTest
|
||||
from kivy.tests.common import GraphicUnitTest
|
||||
|
||||
|
||||
class UIXBoxLayoutTestcase(GraphicUnitTest):
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
from common import GraphicUnitTest
|
||||
from kivy.tests.common import GraphicUnitTest
|
||||
|
||||
|
||||
class UIXWidgetTestCase(GraphicUnitTest):
|
||||
|
|
Loading…
Reference in New Issue