Skip to content

Commit

Permalink
modified string formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Almabekov committed Feb 11, 2019
1 parent dc0f1a1 commit 07893ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analyzere/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def profile(self):

class ExchangeRateTable(DataResource):
def currencies(self):
path = '%s/currencies' % self._get_path(self.id)
path = '{}/currencies'.format(self._get_path(self.id))
resp = request('get', path)
# response will be an embedded object with currencies list
# each element of the currencies list is again an embedded object with the structure like:
Expand Down

0 comments on commit 07893ca

Please sign in to comment.