(self, code: str)
| 6675 | } |
| 6676 | |
| 6677 | def common_currency_code(self, code: str): |
| 6678 | if not self.substituteCommonCurrencyCodes: |
| 6679 | return code |
| 6680 | return self.safe_string(self.commonCurrencies, code, code) |
| 6681 | |
| 6682 | def currency(self, code: str): |
| 6683 | keys = list(self.currencies.keys()) |
no test coverage detected