unnecessary-literal-within-tuple-call (C409)#
Derived from the flake8-comprehensions linter.
Fix is always available.
What it does#
Checks for tuple
calls that take unnecessary list or tuple literals as
arguments.
Why is this bad?#
It's unnecessary to use a list or tuple literal within a tuple()
call,
since there is a literal syntax for these types.
If a list literal was passed, then it should be rewritten as a tuple
literal. Otherwise, if a tuple literal was passed, then the outer call
to list()
should be removed.
Examples#
Use instead: