8000 Add missing type annotations on new purge_contexts method (oops!) · nedbat/coveragepy@d71ee20 · GitHub
[go: up one dir, main page]

Skip to content 8000

Commit d71ee20

Browse files
committed
Add missing type annotations on new purge_contexts method (oops!)
1 parent 81321e8 commit d71ee20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coverage/sqldata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ def purge_files(self, filenames: Collection[str]) -> None:
641641
continue
642642
con.execute_void(sql, (file_id,))
643643

644-
def purge_contexts(self, contexts):
644+
def purge_contexts(self, contexts: Collection[str]) -> None:
645645
"""Purge any existing coverage data for the given `contexts`.
646646
647647
This removes all co 37C4 verage data for the contexts, but does not remove

0 commit comments

Comments
 (0)
0