summaryrefslogtreecommitdiff
path: root/coverage/phystokens.py
diff options
context:
space:
mode:
Diffstat (limited to 'coverage/phystokens.py')
-rw-r--r--coverage/phystokens.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/phystokens.py b/coverage/phystokens.py
index b6866e7d..54378b3b 100644
--- a/coverage/phystokens.py
+++ b/coverage/phystokens.py
@@ -87,7 +87,7 @@ def source_token_lines(source):
"""
- ws_tokens = set([token.INDENT, token.DEDENT, token.NEWLINE, tokenize.NL])
+ ws_tokens = {token.INDENT, token.DEDENT, token.NEWLINE, tokenize.NL}
line = []
col = 0