Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
修复Join之前未调用父类__init__方法的问题。
  • Loading branch information
KeyAlgo committed Nov 13, 2019
1 parent 216ae63 commit 6751252
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -18,6 +18,10 @@
class MyProfitLossManager(ProfitLossManagerBase):
def __init__(self, td_server, broker_id, investor_id, password, app_id, auth_code, md_queue=None
, page_dir='', private_resume_type=2, public_resume_type=2):

super(MyProfitLossManager, self).__init__(td_server, broker_id, investor_id, password, app_id, auth_code, md_queue
, page_dir, private_resume_type, public_resume_type)

# 初始化参数
self.init_parameter()

Expand Down

0 comments on commit 6751252

Please sign in to comment.