summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pylint/checkers/python3.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/python3.py b/pylint/checkers/python3.py
index 7f04c182c..63e756fb7 100644
--- a/pylint/checkers/python3.py
+++ b/pylint/checkers/python3.py
@@ -79,7 +79,7 @@ def _is_builtin(node):
_ACCEPTS_ITERATOR = {'iter', 'list', 'tuple', 'sorted', 'set', 'sum', 'any',
'all', 'enumerate', 'dict', 'filter', 'reversed',
- 'max', 'min'}
+ 'max', 'min', 'frozenset'}
_BUILTIN_METHOD_ACCEPTS_ITERATOR = {
'builtins.list.extend',
'builtins.dict.update',