From 491fde09ec246f49b6261696be7aef575f380e88 Mon Sep 17 00:00:00 2001 From: Robsdedude Date: Wed, 17 May 2023 16:25:07 +0200 Subject: [PATCH] Remove unused import from Python example --- code/python/example.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/python/example.py b/code/python/example.py index dac642d..41cdd31 100644 --- a/code/python/example.py +++ b/code/python/example.py @@ -1,7 +1,7 @@ # pip3 install neo4j # python3 example.py -from neo4j import GraphDatabase, basic_auth +from neo4j import GraphDatabase cypher_query = ''' MATCH (m:Movie {title:$movieTitle})<-[:ACTED_IN]-(a:Person) RETURN a.name as actorName