mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-09 07:41:36 +08:00
11 lines
238 B
Python
11 lines
238 B
Python
|
|
class DummyMapping(object):
|
|
"""
|
|
Dummy object used to provide a mapping interface for singular values.
|
|
"""
|
|
def __init__(self, value):
|
|
self._value = value
|
|
|
|
def __getitem__(self, key):
|
|
return self._value
|