Skip to content

Add missing __eq__ to Mapping#10297

Merged
AlexWaygood merged 3 commits intopython:mainfrom
Dreamsorcerer:patch-26
Jun 10, 2023
Merged

Add missing __eq__ to Mapping#10297
AlexWaygood merged 3 commits intopython:mainfrom
Dreamsorcerer:patch-26

Conversation

@Dreamsorcerer
Copy link
Copy Markdown
Contributor

@github-actions

This comment has been minimized.

@Dreamsorcerer
Copy link
Copy Markdown
Contributor Author

The new error from mypy primer is because they've typed it with Self[K], should be fine for them to type it as object like everything else:
https://github.com/ibis-project/ibis/blob/master/ibis/common/egraph.py#L101

The removed errors from streamlit are exactly the false positives that caused me to look at this (but, in a different library).

Copy link
Copy Markdown
Member

@AlexWaygood AlexWaygood left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks good, just one comment — see above

Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
@github-actions
Copy link
Copy Markdown
Contributor

Diff from mypy_primer, showing the effect of this PR on open source code:

ibis (https://github.com/ibis-project/ibis)
+ ibis/common/egraph.py:101: error: Argument 1 of "__eq__" is incompatible with supertype "Mapping"; supertype defines the argument type as "object"  [override]

streamlit (https://github.com/streamlit/streamlit)
- lib/tests/streamlit/connections/base_connection_test.py: note: In member "test_secrets_property_no_matching_section" of class "ExperimentalBaseConnectionDefaultMethodTests":
- lib/tests/streamlit/connections/base_connection_test.py:58:16: error: Non-overlapping equality check (left operand type: "AttrDict", right operand type: "Dict[<nothing>, <nothing>]")  [comparison-overlap]
- lib/tests/streamlit/connections/base_connection_test.py: note: In member "test_secrets_property_no_secrets" of class "ExperimentalBaseConnectionDefaultMethodTests":
- lib/tests/streamlit/connections/base_connection_test.py:62:16: error: Non-overlapping equality check (left operand type: "AttrDict", right operand type: "Dict[<nothing>, <nothing>]")  [comparison-overlap]

Copy link
Copy Markdown
Member

@AlexWaygood AlexWaygood left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants