Skip to content

Commit 6c9a390

Browse files
committed
Fix call_data unpacking
1 parent a238278 commit 6c9a390

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ def export_config(endpoint: platform.Platform, what: list[str], **kwargs) -> Non
224224
for what_item, call_data in _EXPORT_CALLS.items():
225225
if what_item not in what:
226226
continue
227-
ndx, func, _ = call_data
227+
ndx, func = call_data
228228
if not is_first:
229229
print(",", file=fd)
230230
is_first = False

0 commit comments

Comments
 (0)