-
Notifications
You must be signed in to change notification settings - Fork 141
Adds basedpyright support to poe format
#1240
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
base: main
Are you sure you want to change the base?
Conversation
| ) -> None: | ||
| self._default_runtime: Runtime | None = None | ||
| self._prevent_default = False | ||
| self._default_created = False |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I actually think this is just a mistake in the other line setting this value. I must have just missed it when I originally added this. So line 40 should be deleted along with this one. Can just leave this and open an issue though if that's easier.
| @overload | ||
| def start_local_activity_class( | ||
| activity: type[CallableAsyncNoParam[ReturnType]], | ||
| activity: Type[CallableAsyncNoParam[ReturnType]], # type: ignore[reportDeprecated] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I changed some of these to type as part of #1137. Any reason we shouldn't change them all to type rather than Type with these ignores?
| await workflow_handle.result() | ||
|
|
||
|
|
||
| def test_summary_extraction(): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was this just tested elsewhere? Or not valuable?
What was changed
Why?
Checklist
Closes
How was this tested: