Skip to content

Commit

Permalink
Fix password preview (#2190)
Browse files Browse the repository at this point in the history
  • Loading branch information
codefiles committed Oct 25, 2023
1 parent 474861c commit 2831c97
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions archinstall/lib/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ def _get_values(
raise ValueError('Unsupported formatting call')
elif hasattr(o, 'table_data'):
return o.table_data()
elif hasattr(o, 'json'):
return o.json()
elif is_dataclass(o):
return asdict(o)
else:
Expand Down

0 comments on commit 2831c97

Please sign in to comment.