index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Daniel Girtler <blackrabbit256@gmail.com> | 2023-09-24 18:14:02 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-24 10:14:02 +0200 |
commit | 360a1b4f337e45b2dc26c9af067e53fbd364231f (patch) | |
tree | 665a42dffec8c3b174e41f2e60d669d8dbe44351 /archinstall/lib/output.py | |
parent | 877e34de6353691fb9707828a5880c27655f1d1b (diff) |
-rw-r--r-- | archinstall/lib/output.py | 2 |
diff --git a/archinstall/lib/output.py b/archinstall/lib/output.py index 62a1ba27..945a6c4f 100644 --- a/archinstall/lib/output.py +++ b/archinstall/lib/output.py @@ -38,8 +38,6 @@ 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: |