From: Scott Torborg Date: Sun, 8 Nov 2009 21:19:02 +0000 (-1000) Subject: don't need the str_no_dollar method anymore X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=c77b0b514f4b527412c9d1ad4613029f48fe73de;p=bluechips.git don't need the str_no_dollar method anymore --- diff --git a/bluechips/model/types.py b/bluechips/model/types.py index 5423de9..8cea5e8 100644 --- a/bluechips/model/types.py +++ b/bluechips/model/types.py @@ -123,12 +123,6 @@ class Currency(object): """ return self.__mul__(other) - def __str_no_dollar__(self): - """ - Get to the formatted string without the dollar sign - """ - return str(self).replace('$', '') - def __repr__(self): return '%s("%s")' % (self.__class__.__name__, str(self)) def __str__(self):