8000 Change __init__.py imports from relative to absolute for Python 2.x c… · Global-localhost/numpy-dtypes@c32c546 · GitHub
[go: up one dir, main page]

Skip to content

Commit c32c546

Browse files
committed
Change __init__.py imports from relative to absolute for Python 2.x compatibility
1 parent 57df098 commit c32c546

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

npytypes/quaternion/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import numpy as np
22

3-
from .numpy_quaternion import quaternion
4-
from .info import __doc__
3+
from npytypes.quaternion.numpy_quaternion import quaternion
4+
from npytypes.quaternion.info import __doc__
55

66
__all__ = ['quaternion']
77

0 commit comments

Comments
 (0)
0