From c77b0b514f4b527412c9d1ad4613029f48fe73de Mon Sep 17 00:00:00 2001 From: Scott Torborg Date: Sun, 8 Nov 2009 11:19:02 -1000 Subject: [PATCH] don't need the str_no_dollar method anymore --- bluechips/model/types.py | 6 ------ 1 file changed, 6 deletions(-) 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): -- 2.45.2