File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1+ import pkg_resources
12import pytest
23import typer
3- import pkg_resources
44from typer .testing import CliRunner
55
66app = typer .Typer (name = "dummy" , help = "Dummy app" )
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ def test_import_module() -> None:
77
88
99def test_import_module_with_fake_cli (fake_cli ) -> None :
10- from sqlmodel .cli import get_entry_points , cli
10+ from sqlmodel .cli import cli , get_entry_points
1111
1212 cli .registered_groups = []
1313 get_entry_points ()
Original file line number Diff line number Diff line change 1- from sqlmodel .cli import cli
2- from pathlib import Path
31import configparser
2+ from pathlib import Path
3+
4+ from sqlmodel .cli import cli
45
56
67def test_base_init (tmpdir , runner ):
You can’t perform that action at this time.
0 commit comments