chore: run isort on tests

This commit is contained in:
2022-01-24 21:21:48 +00:00
parent 8d20f486a5
commit a6f0852201
2 changed files with 3 additions and 5 deletions

View File

@@ -5,7 +5,7 @@ import pathlib
import pytest import pytest
import tembo.cli import tembo.cli
from tembo.cli.cli import new, list_all from tembo.cli.cli import list_all, new
def test_new_dry_run(shared_datadir, tmpdir, capsys): def test_new_dry_run(shared_datadir, tmpdir, capsys):

View File

@@ -1,13 +1,11 @@
from datetime import date
import pathlib import pathlib
from datetime import date
import pytest import pytest
from tembo import PageCreatorOptions, ScopedPageCreator from tembo import PageCreatorOptions, ScopedPageCreator, exceptions
from tembo import exceptions
from tembo.utils import Success from tembo.utils import Success
DATE_TODAY = date.today().strftime("%d-%m-%Y") DATE_TODAY = date.today().strftime("%d-%m-%Y")