Skip to content

Commit

Permalink
Fix GetMarketPriceInfo() (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
elbakramer committed Sep 6, 2022
1 parent 8b4ac76 commit a6954ec
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1232,7 +1232,8 @@ def GetMarketPriceInfo(self, code, rqname=None, scrno=None):
"종목코드": code,
}
responses = self.TransactionCall(rqname, trcode, scrno, inputs)
single, _multi = self._ParseTransactionCallResponses(responses)
_single, multi = self._ParseTransactionCallResponses(responses)
single = multi.iloc[0]
return single

def GetRealDataForCodesAsStream(
Expand Down

0 comments on commit a6954ec

Please sign in to comment.