From 8133519f400e8edf1dfee966cbc7f9f21c9aeb79 Mon Sep 17 00:00:00 2001 From: Tim Kleinschmidt Date: Thu, 16 Jul 2020 10:50:05 +0200 Subject: Fix FutureWarning Possible nested set at position 329 Fixes: https://github.com/Kronuz/pyScss/issues/376 --- scss/selector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scss') diff --git a/scss/selector.py b/scss/selector.py index 8a6ecdf..c187f01 100644 --- a/scss/selector.py +++ b/scss/selector.py @@ -33,7 +33,7 @@ SELECTOR_TOKENIZER = re.compile(r''' # Square brackets are attribute tests # TODO: this doesn't handle ] within a string - | [[] .+? []] + | \[ .+? \] # Dot and pound start class/id selectors. Percent starts a Sass # extend-target faux selector. -- cgit v1.2.1