Skip to content

Commit 7500236

Browse files
committed
Reformatting
1 parent 173d83d commit 7500236

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

nodestream_plugin_neo4j/result.py

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,24 @@
99

1010
# Timing metrics
1111
PLANNING_TIME = Metric(
12-
"neo4j_query_planning_time_ms", "Time taken to plan the Neo4j query.", accumulator=True,
12+
"neo4j_query_planning_time_ms",
13+
"Time taken to plan the Neo4j query.",
14+
accumulator=True,
1315
)
1416
PROCESSING_TIME = Metric(
15-
"neo4j_query_processing_time_ms", "Time taken to execute the Neo4j query.", accumulator=True,
17+
"neo4j_query_processing_time_ms",
18+
"Time taken to execute the Neo4j query.",
19+
accumulator=True,
1620
)
1721
TOTAL_TIME = Metric(
18-
"neo4j_query_total_time_ms", "Total time taken to execute the Neo4j query.", accumulator=True,
22+
"neo4j_query_total_time_ms",
23+
"Total time taken to execute the Neo4j query.",
24+
accumulator=True,
1925
)
2026
APOC_TIME = Metric(
21-
"neo4j_query_apoc_time_ms", "Time taken to execute the Neo4j query using APOC.", accumulator=True,
27+
"neo4j_query_apoc_time_ms",
28+
"Time taken to execute the Neo4j query using APOC.",
29+
accumulator=True,
2230
)
2331

2432
# Write metrics
@@ -80,7 +88,9 @@
8088

8189
# APOC specific metrics
8290
WAS_TERMINATED = Metric(
83-
"neo4j_query_was_terminated", "Whether the Neo4j query was terminated.", accumulator=True,
91+
"neo4j_query_was_terminated",
92+
"Whether the Neo4j query was terminated.",
93+
accumulator=True,
8494
)
8595
RETRIES = Metric(
8696
"neo4j_query_retries", "Number of retries in the Neo4j query.", accumulator=True

0 commit comments

Comments
 (0)