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 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):

View File

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