Skip to content

Commit 803a50e

Browse files
committed
typesystem->types
1 parent 33996e0 commit 803a50e

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

neo4j/v1/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020

2121
from .constants import *
2222
from .session import *
23-
from .typesystem import *
23+
from .types import *

neo4j/v1/session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class which can be used to obtain `Driver` instances that are used for
3535
from .connection import connect, Response, RUN, PULL_ALL
3636
from .constants import ENCRYPTED_DEFAULT, TRUST_DEFAULT, TRUST_SIGNED_CERTIFICATES
3737
from .exceptions import CypherError
38-
from .typesystem import hydrated
38+
from .types import hydrated
3939

4040

4141
DEFAULT_MAX_POOL_SIZE = 50

test/test_session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
from neo4j.v1.constants import TRUST_ON_FIRST_USE
2727
from neo4j.v1.exceptions import CypherError
2828
from neo4j.v1.session import GraphDatabase, basic_auth, Record
29-
from neo4j.v1.typesystem import Node, Relationship, Path
29+
from neo4j.v1.types import Node, Relationship, Path
3030

3131
from test.util import ServerTestCase
3232

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
from neo4j.v1.packstream import Structure
2525

26-
from neo4j.v1.typesystem import Node, Relationship, UnboundRelationship, Path, hydrated
26+
from neo4j.v1.types import Node, Relationship, UnboundRelationship, Path, hydrated
2727

2828

2929
class NodeTestCase(TestCase):

0 commit comments

Comments
 (0)