-
Notifications
You must be signed in to change notification settings - Fork 179
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
feat(protocol-designer): add declaration for def run()
to generated Python
#17482
Conversation
* Our docs call it `protocol`, which is slightly misleading since the object is not | ||
* the protocol itself, but we'll try to stay consistent with the docs. |
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 agree we should keep consistent even though its misleading. thanks for adding the comment in to explain this!
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 see the def run()
when exporting 😎
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## edge #17482 +/- ##
=======================================
Coverage 26.16% 26.16%
=======================================
Files 3191 3191
Lines 230130 230143 +13
Branches 9807 9808 +1
=======================================
+ Hits 60207 60220 +13
Misses 169898 169898
Partials 25 25
Flags with carried forward coverage won't be shown. Click here to find out more.
|
… Python (#17482) # Overview This adds the `def run(...)` declaration to the generated Python file. AUTH-1092 We'll start filling in the `run()` function in future PRs. ## Test Plan and Hands on Testing Updated unit tests. Looked at generated file with feature flag turned on. ## Risk assessment Low. This just affects the exported Python file hidden under a feature flag.
… Python (#17482) # Overview This adds the `def run(...)` declaration to the generated Python file. AUTH-1092 We'll start filling in the `run()` function in future PRs. ## Test Plan and Hands on Testing Updated unit tests. Looked at generated file with feature flag turned on. ## Risk assessment Low. This just affects the exported Python file hidden under a feature flag.
Overview
This adds the
def run(...)
declaration to the generated Python file. AUTH-1092 We'll start filling in therun()
function in future PRs.Test Plan and Hands on Testing
Updated unit tests. Looked at generated file with feature flag turned on.
Risk assessment
Low. This just affects the exported Python file hidden under a feature flag.