This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Description
from ward import fixture, Scope
@fixture(scope = Scope.Global)
...
this returns two issues:
from ward import >>>fixture<<<
Type of "fixture" is partially unknown
Type of "fixture" is "(func: Unknown | None = None, *, scope: Scope | str = Scope.Test) -> (partial[Unknown] | _Wrapped[..., Unknown, (*args: Unknown, **kwargs: Unknown), Unknown])"
>>>@fixture(scope = Scope.Global)<<<
Untyped function decorator obscures type of function; ignoring decorator