summaryrefslogtreecommitdiff
path: root/coverage/types.py
diff options
context:
space:
mode:
Diffstat (limited to 'coverage/types.py')
-rw-r--r--coverage/types.py2
1 files changed, 1 insertions, 1 deletions
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:
...