From 6afff74a129341507862d5e47c58b879d5a261e7 Mon Sep 17 00:00:00 2001 From: "finswimmer77@gmail.com" Date: Mon, 4 Nov 2019 20:37:50 +0100 Subject: [PATCH] FIX: next try to make isort happy --- tests/console/commands/test_new.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/console/commands/test_new.py b/tests/console/commands/test_new.py index 98c0e92a0d3..d89f50d6ef2 100644 --- a/tests/console/commands/test_new.py +++ b/tests/console/commands/test_new.py @@ -2,9 +2,12 @@ import pytest import tomlkit + from cleo.testers import CommandTester -from poetry.utils._compat import Path, glob +from poetry.utils._compat import Path +from poetry.utils._compat import glob + fixtures_dir = Path(__file__).parent / "fixtures"