Skip to content

Commit

Permalink
Merge pull request elbakramer#51 from dani-han/dev
Browse files Browse the repository at this point in the history
OnReceiveRealCondition() in KiwoomOpenApiPlusConditionEventHandler is not working.
  • Loading branch information
elbakramer authored Dec 15, 2021
2 parents b0616f2 + c19c3c9 commit 31816ec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -150,3 +150,6 @@ cython_debug/

# Other
/manuals

# credential file
koapy.conf
Original file line number Diff line number Diff line change
Expand Up @@ -1469,7 +1469,7 @@ def OnReceiveTrCondition(
def OnReceiveRealCondition(
self, code, condition_type, condition_name, condition_index
):
if (condition_name, condition_index) == (
if (condition_name, int(condition_index)) == (
self._condition_name,
self._condition_index,
):
Expand Down

0 comments on commit 31816ec

Please sign in to comment.