summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEevee (Alex Munroe) <eevee.git@veekun.com>2014-09-22 13:36:26 -0700
committerEevee (Alex Munroe) <eevee.git@veekun.com>2014-09-22 13:36:26 -0700
commite24bb835fd8df4340874cf77e95382fc6135463e (patch)
tree3e3165db93b63d399437defda84501bddd5528df
parentf65e9ba49bc600ba61ca2808411dd7c0345e62d8 (diff)
downloadpyscss-e24bb835fd8df4340874cf77e95382fc6135463e.tar.gz
On second thought I don't think this assertion buys us anything.
-rw-r--r--scss/namespace.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/scss/namespace.py b/scss/namespace.py
index 8a2e27d..d9d1c71 100644
--- a/scss/namespace.py
+++ b/scss/namespace.py
@@ -31,8 +31,6 @@ class Scope(object):
"""
def __init__(self, maps=()):
maps = list(maps)
- # Check all passed maps are compatible with the current Scope
- assert all(isinstance(m, (dict, type(self))) for m in maps)
self.maps = [dict()] + maps
def __repr__(self):