Skip to content

Commit 60ea588

Browse files
committed
Fix issues
1 parent fba7b00 commit 60ea588

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

nodestream_plugin_neo4j/ingest_query_builder.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
from nodestream.schema import GraphObjectType
2020
from pandas import Timedelta, Timestamp
2121

22-
2322
from .query import Query, QueryBatch
2423

2524
PROPERTIES_PARAM_NAME = "properties"

tests/unit/test_ingest_query_builder.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
TimeToLiveConfiguration,
1616
)
1717
from nodestream.schema import GraphObjectType
18+
from pandas import Timestamp
1819

1920
from nodestream_plugin_neo4j.ingest_query_builder import (
2021
DELETE_NODE_QUERY,
2122
DELETE_REL_QUERY,
2223
Neo4jIngestQueryBuilder,
2324
)
2425
from nodestream_plugin_neo4j.query import COMMIT_QUERY, Query, QueryBatch
25-
from pandas import Timestamp
2626

2727

2828
@pytest.fixture
@@ -90,6 +90,7 @@ def query_builder():
9090
},
9191
)
9292

93+
9394
@patch("pandas.Timestamp.utcnow")
9495
@pytest.mark.parametrize(
9596
"ttl,expected_query",

0 commit comments

Comments
 (0)