Mercurial > hg > config
view python/namespace.py @ 785:205dd903e4c8
add some mediocre workflow
| author | Jeff Hammel <k0scist@gmail.com> |
|---|---|
| date | Mon, 12 Sep 2016 14:11:49 -0700 |
| parents | 0a979b847461 |
| children |
line wrap: on
line source
class Namespace(object): def __init__(self, **kwargs): for key, value in kwargs.items(): setattr(self, key, value)
