Skip to content

Commit 8dbeee5

Browse files
sambacc: do not require coverage for protocol types
Just something I noticed while I was looking over coverage for the new types. Signed-off-by: John Mulligan <[email protected]>
1 parent 2e784e5 commit 8dbeee5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sambacc/simple_waiter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@ class Waiter(typing.Protocol):
6666
"""Waiter protocol - interfaces common to all waiters."""
6767

6868
def wait(self) -> None:
69-
...
69+
... # pragma: no cover
7070

7171
def acted(self) -> None:
7272
"""Inform that waiter that changes were made."""
73-
...
73+
... # pragma: no cover
7474

7575

7676
def watch(

0 commit comments

Comments
 (0)