Gavin Kistner
Gavin Kistner
The [documentation for `@resolve` decorator](https://hamilton.apache.org/reference/decorators/resolve/) includes this example code: ```python @parameterize_values( series_sum_1={"s1": "series_1", "s2": "series_2"}, series_sum_2={"s1": "series_3", "s2": "series_4"}, ) def summation(df: pd.DataFrame, s1: str, s2: str) -> pd.Series: return...
Running `hamilton --help` results in an error. # Current behavior ## Stack Traces ``` ╭────────────────────────────────────────────────────────────────────────────────────── Traceback (most recent call last) ──────────────────────────────────────────────────────────────────────────────────────╮ │ /private/tmp/test/.venv/bin/hamilton:8 in │ │ │ │ 5 from...
The VS Code extension keeps popping up an error ~dialog/toast with the message `Request textDocument/documentSymbol failed`. # Current behavior * Using my large, proprietary codebase, edit some files, error dialog...
False positive `reportAssignmentType` with `list.__add__` type widening from a newly-created object
### Description ```python foo: list[str] = ["a", "b"] bar: list[str | float] = foo + ["c"] # incorrectly shows a type-widening error here baz: list[str | float] = ["a", "b",...
I'd love to have settings that control the appearance of the nodes/edges when highlighted or muted. Could be preferences, could be a stylesheet that the preferences open. Instead of manually...
Often when I'm looking at the upstream/downstream for a node I'm only interested in a single level. I'd like an option to specify (at a minimum) 1 level vs all...