Commit 5a6cb97
authored
Fix MSIXData _asdict AttributeError by using dataclasses.asdict (#459)
Replaces the incorrect _asdict() method call on MSIXData dataclass
with the proper dataclasses.asdict() function. MSIXData is a
dataclass (not a namedtuple), so it doesn't have the _asdict()
method that namedtuples provide.
Fixes #458 - resolves "'MSIXData' object has no attribute '_asdict'" error1 parent c2e762e commit 5a6cb97
1 file changed
+3
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
| 12 | + | |
12 | 13 | | |
13 | 14 | | |
14 | 15 | | |
| |||
111 | 112 | | |
112 | 113 | | |
113 | 114 | | |
114 | | - | |
| 115 | + | |
115 | 116 | | |
116 | 117 | | |
117 | 118 | | |
| |||
237 | 238 | | |
238 | 239 | | |
239 | 240 | | |
240 | | - | |
| 241 | + | |
0 commit comments