index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | codefiles <11915375+codefiles@users.noreply.github.com> | 2023-10-25 03:27:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-25 09:27:18 +0200 |
commit | 2831c97338ca3b60dc1c697d158cd3f6281746d7 (patch) | |
tree | b25ff1240a9668ad18e0de2969abf6b4d0a3d1e2 /archinstall/lib/output.py | |
parent | 474861c15516cc046758cc9b148ce2608dd1c9be (diff) |
-rw-r--r-- | archinstall/lib/output.py | 2 |
diff --git a/archinstall/lib/output.py b/archinstall/lib/output.py index 945a6c4f..62a1ba27 100644 --- a/archinstall/lib/output.py +++ b/archinstall/lib/output.py @@ -38,6 +38,8 @@ class FormattedOutput: 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: |