From 69cdd7a270e12f6c45ac417d3dbfadfc097c9f72 Mon Sep 17 00:00:00 2001 From: "Eevee (Alex Munroe)" Date: Wed, 28 Aug 2013 18:39:01 -0700 Subject: Finish the rest of List * Number. --- scss/types.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scss/types.py b/scss/types.py index a2c075f..5d26185 100644 --- a/scss/types.py +++ b/scss/types.py @@ -610,6 +610,8 @@ class List(Value): if not other.is_unitless: raise TypeError("Can only multiply %s by %s" % (self.__class__.__name__, other.__class__.__name__)) + return List(self.value * int(other.value), use_comma=self.use_comma) + def render(self, compress=False): delim = self.delimiter(compress) -- cgit v1.2.1