Commit 918f506
committed
fix(qlik_replicate_workspace): use dataclasses.field, not pydantic.Field
@DataClass doesn't recognize pydantic's Field(default_factory=...) — the
FieldInfo becomes the actual attribute value at runtime, which fails with
'TypeError: Value after * must be an iterable, not FieldInfo' when we
splat asset_key_prefix into the AssetKey list. Use dataclasses.field
(same pattern as every other @DataClass StateBackedComponent).
Bumps to 0.10.29.1 parent 2e7be45 commit 918f506
2 files changed
Lines changed: 3 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
20 | | - | |
| 20 | + | |
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | | - | |
26 | 25 | | |
27 | 26 | | |
28 | 27 | | |
| |||
147 | 146 | | |
148 | 147 | | |
149 | 148 | | |
150 | | - | |
| 149 | + | |
151 | 150 | | |
152 | 151 | | |
153 | 152 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
| 7 | + | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| |||
0 commit comments