Justin Black

Results 169 comments of Justin Black

Though looking at CodegenModel we already have readOnlyVars, so sure, let's add writeOnlyVars if we have already started going down this path. https://github.com/OpenAPITools/openapi-generator/blob/master/modules/openapi-generator/src/main/java/org/openapitools/codegen/CodegenModel.java#L61

One can also do this with composition instead of readonly/writeOnly. Define one schema with shared properties. Define another for readonly and allOf include the shared schema and define readonly additions....

Why not pickle enums into bytes for serialization? Or leverage what pydantic does?

So right now it is entirely up to a develop to manually build an explicit list of activities in python. Our activities are already segregated by the kind fo work...

I am not a maintainer on this project. If you have historical poetry lock files, you can use those to verify the sha256 hashes of the wheel files that you...

It looks like [activity file handles extend asyncio.Task](https://python.temporal.io/temporalio.workflow.ActivityHandle.html). So can one use workflow.wait_condition until activity_handle.canceled() is True? hmm that did not work for us, but checking for activity_handle.done worked

@patrickelectric what is the status on this? I asked if your PR could be reviewed on the ros discord and a person said they would be happy to review it...

Here is a possible solution that may need some tweaking for other use cases: ``` class TypeCheckedNode(Node): def __key_to_dict(self, map_data: dict, key_with_periods: str, value: Parameter): if "." in key_with_periods: key,...

Could the parameter be of type typeddict? And that typeddict has the keys min and max which have values that see Parameters with specific types? min could be a typedddict...