Skip to content

Commit

Permalink
fix neo4j connection handling
Browse files Browse the repository at this point in the history
  • Loading branch information
motey authored Oct 2, 2020
1 parent 8ee21c1 commit 9355fae
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions run.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@

else:

graph = py2neo.Graph(host=NEO4J_CONFIG_DICT['host'], user=NEO4J_CONFIG_DICT['user'],
password=NEO4J_CONFIG_DICT['password'], secure=NEO4J_CONFIG_DICT['secure'], verify=False)
graph = py2neo.Graph(**NEO4J_CONFIG_DICT)

# setup DB
helper.setup_db(graph)
Expand Down

0 comments on commit 9355fae

Please sign in to comment.