Darwin Yip

Results 5 issues of Darwin Yip

My .env file has macros like `FOO=$(command)` but these don't get executed so the env var will become `FOO="$(command)"` instead of the intended value.

blocked

For example how is it same or different from Airflow or Prefect?

question

**Is your feature request related to a problem? Please describe.** When using this with (Java) code containing builders/factories, the diagram becomes very large and hard to follow. **Describe the solution...

mypy complains about the following code: ```python from dataclasses import dataclass from typing import Union from marshmallow_dataclass import add_schema @add_schema @dataclass(frozen=True) class Person: name: str age: Union[int, float] Person.Schema().load({"name": "jane",...