Skip to content

Commit f9d29e2

Browse files
committed
Correct syntax for coverage exclusion
1 parent c49f2fc commit f9d29e2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.coveragerc-py2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ exclude_lines =
77
pragma: no cover
88
if not PY2:
99
if AIO_AVAILABLE:
10-
def bind_async(self, loop, **kwargs):
10+
def bind_async

.coveragerc-py34

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ exclude_lines =
77
pragma: no cover
88
if PY2:
99
if AIO_AVAILABLE:
10-
def bind_async(self, loop, **kwargs):
10+
def bind_async

0 commit comments

Comments
 (0)