From e98627223f7884505327baf80a14872ead7fc051 Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Fri, 12 Jul 2019 06:14:36 +0200 Subject: [PATCH] remove the noop init of PyobjMixin --- src/_pytest/python.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/_pytest/python.py b/src/_pytest/python.py index 801a16a5c..1bbe7ff25 100644 --- a/src/_pytest/python.py +++ b/src/_pytest/python.py @@ -240,9 +240,6 @@ class PyobjContext: class PyobjMixin(PyobjContext): _ALLOW_MARKERS = True - def __init__(self, *k, **kw): - super().__init__(*k, **kw) - @property def obj(self): """Underlying Python object."""