index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-09-06 15:01:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-06 15:01:37 +0200 |
commit | 48fd68124ae62546aa72602d4f2666a635fb86ed (patch) | |
tree | 7bf9c2de4f0119bedcf05682f99d15e2c8534f78 /archinstall/lib/general.py | |
parent | b0aa5dcbbb779a72e06132be41f087c93f44e6d9 (diff) | |
parent | 05c923524be91f2031855fce6fca6252ea21e444 (diff) |
-rw-r--r-- | archinstall/lib/general.py | 5 |
diff --git a/archinstall/lib/general.py b/archinstall/lib/general.py index b9dc66ab..5200033a 100644 --- a/archinstall/lib/general.py +++ b/archinstall/lib/general.py @@ -98,10 +98,7 @@ class JsonEncoder: elif isinstance(obj, (datetime, date)): return obj.isoformat() elif isinstance(obj, (list, set, tuple)): - r = [] - for item in obj: - r.append(json.loads(json.dumps(item, cls=JSON))) - return r + return [json.loads(json.dumps(item, cls=JSON)) for item in obj] else: return obj |