diff --git a/neomodel/scripts/neomodel_install_labels.py b/neomodel/scripts/neomodel_install_labels.py index 8aa7a73b..fdbf8f25 100755 --- a/neomodel/scripts/neomodel_install_labels.py +++ b/neomodel/scripts/neomodel_install_labels.py @@ -26,7 +26,6 @@ --db bolt://neo4j:neo4j@localhost:7687 Neo4j Server URL """ -from __future__ import print_function import sys import textwrap diff --git a/neomodel/scripts/neomodel_remove_labels.py b/neomodel/scripts/neomodel_remove_labels.py index 79e79390..d879932f 100755 --- a/neomodel/scripts/neomodel_remove_labels.py +++ b/neomodel/scripts/neomodel_remove_labels.py @@ -23,7 +23,6 @@ Neo4j Server URL """ -from __future__ import print_function import textwrap from argparse import ArgumentParser, RawDescriptionHelpFormatter diff --git a/test/async_/test_models.py b/test/async_/test_models.py index b9bb2e44..604b23d4 100644 --- a/test/async_/test_models.py +++ b/test/async_/test_models.py @@ -1,5 +1,3 @@ -from __future__ import print_function - from datetime import datetime from test._async_compat import mark_async_test diff --git a/test/conftest.py b/test/conftest.py index a97750fa..a456e4d7 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -1,5 +1,3 @@ -from __future__ import print_function - import os import pytest diff --git a/test/sync_/test_models.py b/test/sync_/test_models.py index 3698b612..02adad99 100644 --- a/test/sync_/test_models.py +++ b/test/sync_/test_models.py @@ -1,5 +1,3 @@ -from __future__ import print_function - from datetime import datetime from test._async_compat import mark_sync_test