diff --git a/gestalt/Type.py b/gestalt/Type.py index cd5fa5e..69750e3 100644 --- a/gestalt/Type.py +++ b/gestalt/Type.py @@ -126,10 +126,7 @@ def __str__(self): def __float__(self): return float(self.val()) - def __format__(self, format_spec): - if (format_spec != ""): - print(format_spec) - + def __format__(self, format_spec): return str(self).__format__(format_spec)