tychxn/jd-assistant

code 优化

adrielliu opened this issue · 0 comments

if not self.eid or not self.fp or not self.track_id or not self.risk_control:

这里
if not self.eid or not self.fp or not self.track_id or not self.risk_control:
raise AsstException('请在 config.ini 中配置 eid, fp, track_id, risk_control 参数,具体请参考 wiki-常见问题')
可以改成
if not all([self.eid, self.fp, self.track_id, self.risk_control]):
raise AsstException('请在 config.ini 中配置 eid, fp, track_id, risk_control 参数,具体请参考 wiki-常见问题')
没有对与错, 看起来更简洁,