gootsaud / bike-riding

Method has no argument PYL-E0211
Bug risk
Critical
a year agoa year 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