python: avoid an Any
This commit is contained in:
parent
574e0f45d9
commit
bc71561ad9
|
@ -473,7 +473,9 @@ class PyCollector(PyobjMixin, nodes.Collector):
|
||||||
clscol = self.getparent(Class)
|
clscol = self.getparent(Class)
|
||||||
cls = clscol and clscol.obj or None
|
cls = clscol and clscol.obj or None
|
||||||
|
|
||||||
definition = FunctionDefinition.from_parent(self, name=name, callobj=funcobj)
|
definition: FunctionDefinition = FunctionDefinition.from_parent(
|
||||||
|
self, name=name, callobj=funcobj
|
||||||
|
)
|
||||||
fixtureinfo = definition._fixtureinfo
|
fixtureinfo = definition._fixtureinfo
|
||||||
|
|
||||||
# pytest_generate_tests impls call metafunc.parametrize() which fills
|
# pytest_generate_tests impls call metafunc.parametrize() which fills
|
||||||
|
|
Loading…
Reference in New Issue