From 6c592bf1976787dea1d520d4048db81bba63c3ba Mon Sep 17 00:00:00 2001 From: David McMackins II Date: Wed, 25 May 2016 15:29:48 -0500 Subject: Remove usage of Ticker field 'kind' --- cfetch/__init__.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/cfetch/__init__.py b/cfetch/__init__.py index db65f7d..487559c 100644 --- a/cfetch/__init__.py +++ b/cfetch/__init__.py @@ -21,14 +21,13 @@ from os.path import basename, dirname, exists, expanduser, isdir, join from os.path import realpath from requests import get -__version__ = '5.1.1' +__version__ = '5.2.0' ## A cryptocurrency exchange rate ticker. class Ticker(): ## Constructor for this class. # @param path The URL prefix for this ticker. - # @param kind Which type of exchange rate to fetch. - def __init__(self, path): + def __init__(self, path, kind=None): self.path = path ## Defines how a currency pair is defined in the request URL. -- cgit v1.2.3