We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 534c2c8 commit d6ac1c9Copy full SHA for d6ac1c9
1 file changed
imgurpython/imgur/models/topic.py
@@ -0,0 +1,8 @@
1
+class Topic(object):
2
+
3
+ def __init__(self, *initial_data, **kwargs)
4
+ for dictionary in initial_data:
5
+ for key, value in dictionary.iteritems():
6
+ setattr(self, key, value)
7
+ for key, value in kwargs.iteritems():
8
0 commit comments