From 4dfcd91bcd2266c50525a19b752a0ef74e93f4e8 Mon Sep 17 00:00:00 2001 From: Chris Henning Date: Sun, 12 Jun 2022 16:19:25 -0400 Subject: [PATCH] fix more flake8 errors --- plugins/eddn.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/eddn.py b/plugins/eddn.py index 8b672cec..51ae523b 100644 --- a/plugins/eddn.py +++ b/plugins/eddn.py @@ -1379,9 +1379,9 @@ class EDDN: } } # Readd Horizons and Odyssey to the outer message not each signal - for gamever in [ "horizons", "odyssey" ]: - if gamever in entry and gamever not in msg: - msg[gamever] = entry[gamever] + for gamever in ["horizons", "odyssey"]: + if gamever in entry and gamever not in msg: + msg[gamever] = entry[gamever] # Another SystemAddress check, however: some events won't have it. Is it an issue? if this.systemaddress is None or ('SystemAddress' in entry and this.systemaddress != entry['SystemAddress']):