unused import, make test name match function
This commit is contained in:
parent
322b267825
commit
baf39d76b2
1 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@ import importlib
|
||||||
import inspect
|
import inspect
|
||||||
import sys
|
import sys
|
||||||
import typing
|
import typing
|
||||||
from typing import Optional, Callable, Any, List, Iterator
|
from typing import Optional, Callable, Any, Iterator
|
||||||
|
|
||||||
from .common import StatsFun, Stats, stat
|
from .common import StatsFun, Stats, stat
|
||||||
|
|
||||||
|
@ -85,7 +85,7 @@ def sig_required_params(sig: inspect.Signature) -> Iterator[inspect.Parameter]:
|
||||||
yield param
|
yield param
|
||||||
|
|
||||||
|
|
||||||
def test_sig_required_args() -> None:
|
def test_sig_required_params() -> None:
|
||||||
|
|
||||||
def x() -> int:
|
def x() -> int:
|
||||||
return 5
|
return 5
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue