unnecessary-literal-within-tuple-call (C409)
Added in v0.0.66 · Related issues · View source
Derived from the flake8-comprehensions linter.
Fix is sometimes 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 tuple() should be removed.
Example
Use instead:
Fix safety
This rule's fix is marked as unsafe, as it may occasionally drop comments when rewriting the call. In most cases, though, comments will be preserved.