Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

unsupported-binary-operation is reported for type annotations #8297

Closed
sam-s opened this issue Feb 15, 2023 · 2 comments
Closed

unsupported-binary-operation is reported for type annotations #8297

sam-s opened this issue Feb 15, 2023 · 2 comments
Labels
dataclasses Duplicate 🐫 Duplicate of an already existing issue False Positive 🦟 A message is emitted but nothing is wrong with the code

Comments

@sam-s
Copy link

sam-s commented Feb 15, 2023

Bug description

The following code works fine and conforms to examples:

"https://github.com/PyCQA/pylint/issues/8297"
from dataclasses import dataclass

@dataclass
class C:
    "class doc"
    a: str
    b: int = 10
    c: float | int | None = None

Configuration

No response

Command used

pylint a.py

Pylint output

************* Module a
a.py:9: [E1131(unsupported-binary-operation), C] unsupported operand type(s) for |
a.py:9: [E1131(unsupported-binary-operation), C] unsupported operand type(s) for |

Expected behavior

no diagnostics

Pylint version

pylint 2.15.10
astroid 2.13.5
Python 3.10.6 (main, Nov 14 2022, 16:10:14) [GCC 11.3.0]

OS / Environment

ubuntu

Additional dependencies

No response

@sam-s sam-s added the Needs triage 📥 Just created, needs acknowledgment, triage, and proper labelling label Feb 15, 2023
@Pierre-Sassoulas Pierre-Sassoulas added False Positive 🦟 A message is emitted but nothing is wrong with the code dataclasses Needs PR This issue is accepted, sufficiently specified and now needs an implementation and removed Needs triage 📥 Just created, needs acknowledgment, triage, and proper labelling labels Feb 15, 2023
@Pierre-Sassoulas
Copy link
Member

I can reproduce on 2.17.0dev0, (only one message instead of two).

@mbyrnepr2
Copy link
Member

I think its a duplicate of #7381. There are multiple examples of this happening over there and I suspect it has a similar root-cause.

@Pierre-Sassoulas Pierre-Sassoulas closed this as not planned Won't fix, can't repro, duplicate, stale Feb 15, 2023
@Pierre-Sassoulas Pierre-Sassoulas added Duplicate 🐫 Duplicate of an already existing issue and removed Needs PR This issue is accepted, sufficiently specified and now needs an implementation labels Feb 15, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dataclasses Duplicate 🐫 Duplicate of an already existing issue False Positive 🦟 A message is emitted but nothing is wrong with the code
Projects
None yet
Development

No branches or pull requests

3 participants