Dov Benyomin Sohacheski

Results 118 comments of Dov Benyomin Sohacheski

There are many ways to reduce the overall footprint of the project *(both the production artifact and the git repository)*. 1. Do not include static web assets in the repository,...

> One more idea copied from #764 : > > * Create a different project something like diagrams-custom-resources that will only accept icons and can be called with Custom node...

@nlamirault The following have already been added: - Debian #570 - Ubuntu #186

Changing the render to use python solves the issue: `template_fields_renderers = {"env_vars": "py"}`

> Does this work? > > ```python > KubernetesPodOperater( > task_id=..., > ..., > env_vars=[k8s.V1EnvVar(name='AWS_ACCESS_KEY_ID', value='{{ var.value.aws_access_key_id }}')], > ) > ``` Yes, as mentioned above the issue is only...

I was just thinking the same thing. I ran into this problem because The **DefinitelyTyped** repository does not have an optional `loc` attribute on the `Token` type.

Any updates on this?

@HenryXY95 See #343, IMO this is a duplicate.

@bitranox Any headway on the `ObjectProxy` types? I seemed to make `mypy` happy with the following `wrapt.pyi`: ```python from typing import Any, Generic, TypeVar T = TypeVar("T", bound=Any) class ObjectProxy(Generic[T]):...