Last analyzed 09b2ae1 5 months ago
Default analysis branch is
Currently analyzing run
Method has no argument PYL-E0211
Bug risk
5 months ago5 months old
Method has no argument
813    """A namespace object that can hold arbitrary attributes.  It may be
814    initialized from a dictionary or with keyword arguments."""
815
816    def __init__(*args: t.Any, **kwargs: t.Any) -> None:  # noqa: B902817        self, args = args[0], args[1:]
818        self.__attrs = dict(*args, **kwargs)
819