Skip to content

Commit

Permalink
Merge pull request #105 from ancoka/develop
Browse files Browse the repository at this point in the history
fix(huawei): 修复配置读取时间格式错误
  • Loading branch information
lov3smu authored Nov 1, 2023
2 parents fb6c757 + ee1c8f0 commit 9968f25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion huawei.py
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ def __start_buying(self):
self.__check_can_submit_order()
self.__submit_order()
clickTimes += 1
time.sleep(self.config.get('process', 'interval', '0.001'))
time.sleep(float(self.config.get('process', 'interval', '0.001')))
logger.info("抢购活动最后排队下单环节结束")

def __create_and_start_thread(self):
Expand Down

0 comments on commit 9968f25

Please sign in to comment.