summaryrefslogtreecommitdiff
path: root/coverage/types.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2023-01-26 19:07:54 -0500
committerNed Batchelder <ned@nedbatchelder.com>2023-01-26 19:07:54 -0500
commit2d628d40d60f967f135a8c21a62a000716c45054 (patch)
treeddeab6c0cb3309d42b4618891104f2570bc4cbbb /coverage/types.py
parent92fe560a9368a5ac32ad5a2a272913b1b0ebfdd5 (diff)
downloadpython-coveragepy-git-2d628d40d60f967f135a8c21a62a000716c45054.tar.gz
style: remove needless trailing commas
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:
...