From baf39d76b2222a41d324e5bc09721657484b87bd Mon Sep 17 00:00:00 2001 From: Sean Breckenridge Date: Mon, 19 Apr 2021 02:37:34 -0700 Subject: [PATCH] unused import, make test name match function --- my/core/stats.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/my/core/stats.py b/my/core/stats.py index 12e09a7..b54a3b9 100644 --- a/my/core/stats.py +++ b/my/core/stats.py @@ -6,7 +6,7 @@ import importlib import inspect import sys import typing -from typing import Optional, Callable, Any, List, Iterator +from typing import Optional, Callable, Any, Iterator from .common import StatsFun, Stats, stat @@ -85,7 +85,7 @@ def sig_required_params(sig: inspect.Signature) -> Iterator[inspect.Parameter]: yield param -def test_sig_required_args() -> None: +def test_sig_required_params() -> None: def x() -> int: return 5