summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid McMackins II <contact@mcmackins.org>2015-08-31 19:22:20 -0500
committerDavid McMackins II <contact@mcmackins.org>2015-08-31 19:22:20 -0500
commitcf89e4e3ec30d58ae96a4432ef61347c01ea4f27 (patch)
tree29d1c18b6dca02e0a48ae592f0c24dc2156fb03a
parentd42d97fbbb4d6a468f11ceb6e67365e0f1e58630 (diff)
Added return value documentation for Ticker.get_rate()
-rw-r--r--cfetch/__init__.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/cfetch/__init__.py b/cfetch/__init__.py
index 46a2731..d7d1876 100644
--- a/cfetch/__init__.py
+++ b/cfetch/__init__.py
@@ -49,6 +49,7 @@ class Ticker():
# @param a The first currency.
# @param b The second currency.
# @param amt The number quantity of 'a' currency.
+ # @return The exchange rate between 'a' and 'b' currencies.
def get_rate(self, a, b, amt=1):
r = get(self.path + self.get_pair(a, b))