mirror of
https://github.com/jazzband/django-constance.git
synced 2026-05-04 05:34:48 +00:00
6 lines
87 B
Python
6 lines
87 B
Python
|
|
class Connection(dict):
|
||
|
|
def set(self, key, value):
|
||
|
|
self[key] = value
|
||
|
|
|
||
|
|
|