Skip to content

Commit

Permalink
fixed typo in contract_mixin.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Voyz committed May 6, 2024
1 parent 6af92ce commit b7cff49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ibind/client/ibkr_client_mixins/contract_mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def currency_exchange_rate(self: 'IbkrClient', source: str, target: str) -> Resu
source (str): Specify the base currency to request data for. Valid Structure: “AUD”
target (str): Specify the quote currency to request data for. Valid Structure: “USD”
"""
return self.get(f'iserver/exchangerate', {'source': source, target: target})
return self.get(f'iserver/exchangerate', {'source': source, 'target': target})

def info_and_rules_by_conid(self: 'IbkrClient', conid: str, is_buy: bool) -> Result: # pragma: no cover
"""
Expand Down

0 comments on commit b7cff49

Please sign in to comment.