Path 1: 1 calls (1.0)

'value' (1)

AttributeError (1)

1def __getattr__(self, name: str) -> t.Any:
2        try:
3            return self.__dict__[name]
4        except KeyError:
5            raise AttributeError(name) from None