This commit is contained in:
Kovid Goyal 2019-11-07 09:53:48 +05:30
parent 9e1bbdf5b4
commit 054752d956
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -87,8 +87,8 @@ def normalize_language_tag(tag):
return taglist
INAPPROPRIATE_PSEUDO_CLASSES = frozenset([
'active', 'after', 'disabled', 'visited', 'link', 'before', 'focus', 'first-letter', 'enabled', 'first-line', 'hover', 'checked', 'target'])
INAPPROPRIATE_PSEUDO_CLASSES = frozenset((
'active', 'after', 'disabled', 'visited', 'link', 'before', 'focus', 'first-letter', 'enabled', 'first-line', 'hover', 'checked', 'target'))
class Select(object):