From 4df38d6a73f796dd25d5234aac4c6b0e02e53825 Mon Sep 17 00:00:00 2001 From: David Sangrey Date: Thu, 4 Jan 2024 14:12:47 -0500 Subject: [PATCH] [635] Remove Outdated Comment All Dicts Keep Order. Co-authored-by: Phoebe <40956085+C1701D@users.noreply.github.com> --- monitor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitor.py b/monitor.py index a397dbf9..8364f95b 100644 --- a/monitor.py +++ b/monitor.py @@ -1073,7 +1073,7 @@ class EDLogs(FileSystemEventHandler): # From 3.3 full Cargo event (after the first one) is written to a separate file if 'Inventory' not in entry: with open(join(self.currentdir, 'Cargo.json'), 'rb') as h: # type: ignore - entry = json.load(h) # Preserve property order because why not? + entry = json.load(h) self.state['CargoJSON'] = entry clean = self.coalesce_cargo(entry['Inventory'])