summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerman M. Bravo <german.mb@deipi.com>2013-10-08 06:20:18 -0700
committerGerman M. Bravo <german.mb@deipi.com>2013-10-08 06:20:18 -0700
commite77cec393badc83cfa9ba9db3c494520b56ee739 (patch)
tree53292eb61e8552c2955f7893cc8591c1cc9453e3
parente01ba8869b1fa3f1c178df151b67dbd0b0d929a0 (diff)
downloadpyscss-e77cec393badc83cfa9ba9db3c494520b56ee739.tar.gz
Removed unused 'missing' object
-rw-r--r--scss/types.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/scss/types.py b/scss/types.py
index cd3910c..3351f7f 100644
--- a/scss/types.py
+++ b/scss/types.py
@@ -348,7 +348,6 @@ class Number(Value):
unit_denom=self.unit_denom * int(exp.value),
)
-
def __mul__(self, other):
if not isinstance(other, Number):
return NotImplemented
@@ -1037,7 +1036,6 @@ class String(Value):
return self.__str__()
-missing = object()
class Map(Value):
sass_type_name = u'map'