-
-
Notifications
You must be signed in to change notification settings - Fork 18.6k
Fix type annotations in pandas.core.computation #26295
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
Changes from 1 commit
26328d6
ce2b686
f079483
9f50c95
a618c54
8a47710
2061229
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -166,7 +166,8 @@ def __init__(self, value, env, side=None, encoding=None): | |
def _resolve_name(self): | ||
return self._name | ||
|
||
@property | ||
# read-only property overwriting read/write | ||
@property # type: ignore | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Handling these as here There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could we just remove the setters from the base class or are they actually used? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We can remove the |
||
def name(self): | ||
return self.value | ||
|
||
|
Uh oh!
There was an error while loading. Please reload this page.