Skip to content

Commit 48f9562

Browse files
committed
Replaced absolute with relative imports
1 parent a7d0aea commit 48f9562

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

neo4j/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
# limitations under the License.
2020

2121

22-
from neo4j.meta import version as __version__
22+
from .meta import version as __version__

neo4j/v1/connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
from socket import create_connection, SHUT_RDWR
3030
from struct import pack as struct_pack, unpack as struct_unpack, unpack_from as struct_unpack_from
3131

32-
from neo4j.meta import version
32+
from ..meta import version
3333
from .compat import hex2, secure_socket
3434
from .exceptions import ProtocolError
3535
from .packstream import Packer, Unpacker

0 commit comments

Comments
 (0)