furmeet-bot/webproj/objectify.py

6 lines
148 B
Python
Raw Normal View History

2020-07-08 01:03:31 +00:00
# -*- encoding: utf-8 -*-
class Objectify(object):
def __init__(self, data=None):
self.__dict__ = data if data is not None else dict()