Conditions | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | from lib.wechatutil.appinfo import AppInfo |
||
5 | def __init__(self, **kwargs): |
||
6 | self.appinfo = AppInfo(kwargs) |
||
|
|||
7 | self.description = kwargs['description'] |
||
8 | self.allow_userinfos = kwargs['allow_userinfos']['user'] |
||
9 | self.allow_partys = kwargs['allow_partys']['partyid'] |
||
10 | self.allow_tags = kwargs['allow_tags']['tagid'] |
||
11 | self.close = kwargs['close'] |
||
12 | self.redirect_domain = kwargs['redirect_domain'] |
||
13 | self.report_location_flag = kwargs['report_location_flag'] |
||
14 | self.isreportuser = kwargs['isreportuser'] |
||
15 | self.isreportenter = kwargs['isreportenter'] |
||
16 | self.chat_extension_url = kwargs['chat_extension_url'] |
||
17 | self.type = kwargs['type'] |
||
18 | |||
30 |