Skip to content

duplicate-union-member (PYI016)#

Derived from the flake8-pyi linter.

Fix is sometimes available.

What it does#

Checks for duplicate union members.

Why is this bad?#

Duplicate union members are redundant and should be removed.

Example#

foo: str | str

Use instead:

foo: str

References#