mirror of
ssh://devgit.janware.com/janware/proj/jw-python
synced 2026-06-17 21:46:39 +02:00
Include py-topdir.mk, which entails loads of fallout from make check. Fix it.
Signed-off-by: Jan Lindemann <jan@janware.com>
9 lines
198 B
Python
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]
|