jw-python/src/python/jw/util/Bunch.py
Jan Lindemann e9845b5a1f
Makefile: Include py-topdir.mk

Include py-topdir.mk, which entails loads of fallout from make check. Fix it.

Signed-off-by: Jan Lindemann <jan@janware.com>
2026-06-12 04:55:47 +02:00

9 lines
198 B
Python

from typing import Any
class Bunch: # export
def __init__(self, **kwargs):
self.__dict__.update(kwargs)
def __getitem__(self, key: str) -> Any:
return self.__dict__[key]