Adrian Blandin

Results 5 comments of Adrian Blandin

See also this: https://github.com/pydantic/pydantic/discussions/8585 But for that, we would need to have access to the model's class inside ValidationInfo.

Every places that have defaults values of `None` should either take `Optional[...]` or `Union[...]`. For example, this: ```python class ProcessingStep(ConfigurableRetryStep): """`ProcessingStep` for SageMaker Pipelines Workflows.""" def __init__( self, name: str,...

Hi @matthewelwell đŸ™‚, I don't think I'll have time to work on a PR for this.

Thanks, it does work! :smiley: Maybe it should be the recommended method described in the documentation?

I still see an issue with that in my case, where we have `dev` and `production` indexes in CodeArtifact. Currently, we have: **pyproject.toml** ```TOML # ... dependencies = [ "my-package[aws,utils]==3.0.123",...