From 2d628d40d60f967f135a8c21a62a000716c45054 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Thu, 26 Jan 2023 19:07:54 -0500 Subject: style: remove needless trailing commas --- coverage/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coverage/types.py') diff --git a/coverage/types.py b/coverage/types.py index 3d21ac9d..b8135d05 100644 --- a/coverage/types.py +++ b/coverage/types.py @@ -161,7 +161,7 @@ class TPlugin(Protocol): class TWarnFn(Protocol): """A callable warn() function.""" - def __call__(self, msg: str, slug: Optional[str] = None, once: bool = False,) -> None: + def __call__(self, msg: str, slug: Optional[str] = None, once: bool = False) -> None: ... -- cgit v1.2.1