All examples use something like ```python driver = GraphDatabase.driver(...) ... # some work driver.close() ``` I advise to use the following instead. ```python with GraphDatabase.driver(...) as driver: ... # some work ``` This way, the driver will always get closed properly even if "some work" results in an exception.