@@ -190,8 +190,7 @@ def __init__(
190
190
optionflags : int = 0 ,
191
191
continue_on_failure : bool = True ,
192
192
) -> None :
193
- super ().__init__ (checker = checker , verbose = verbose , optionflags = optionflags
194
- )
193
+ super ().__init__ (checker = checker , verbose = verbose , optionflags = optionflags )
195
194
self .continue_on_failure = continue_on_failure
196
195
197
196
def report_failure (
@@ -512,7 +511,7 @@ def _find_lineno(self, obj, source_lines):
512
511
if isinstance (obj , property ):
513
512
obj = getattr (obj , "fget" , obj )
514
513
# Type ignored because this is a private function.
515
- return super ()._find_lineno (
514
+ return super ()._find_lineno ( # type:ignore[misc]
516
515
obj ,
517
516
source_lines ,
518
517
)
@@ -525,7 +524,8 @@ def _find(
525
524
with _patch_unwrap_mock_aware ():
526
525
527
526
# Type ignored because this is a private function.
528
- super ()._find (tests , obj , name , module , source_lines , globs , seen
527
+ super ()._find ( # type:ignore[misc]
528
+ tests , obj , name , module , source_lines , globs , seen
529
529
)
530
530
531
531
if self .path .name == "conftest.py" :
0 commit comments