From 9581ead7ccc10e8826338e4bf779e8031c803137 Mon Sep 17 00:00:00 2001
From: A_D <aunderscored@gmail.com>
Date: Fri, 10 Jul 2020 05:23:33 +0200
Subject: [PATCH] Fixed inline comments using tabs for separation

Two spaces after tabs, according to flake8
---
 edshipyard.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/edshipyard.py b/edshipyard.py
index e3b941c2..2fb162bb 100644
--- a/edshipyard.py
+++ b/edshipyard.py
@@ -115,7 +115,7 @@ def export(data, filename=None):
                 name = module['name']
 
             if name == 'Frame Shift Drive':
-                fsd = module	# save for range calculation
+                fsd = module  # save for range calculation
 
                 if mods.get('OutfittingFieldType_FSDOptimalMass'):
                     fsd['optmass'] *= mods['OutfittingFieldType_FSDOptimalMass']['value']
@@ -141,8 +141,8 @@ def export(data, filename=None):
             if __debug__:
                 print('EDShipyard: %s' % e)
 
-            continue	# Silently skip unrecognized modules
-        
+            continue  # Silently skip unrecognized modules
+
         except Exception:
             if __debug__:
                 raise
@@ -190,7 +190,7 @@ def export(data, filename=None):
     if oldfiles:
         with open(join(config.get('outdir'), oldfiles[-1]), 'rU') as h:
             if h.read() == string:
-                return	# same as last time - don't write
+                return  # same as last time - don't write
 
     # Write
     filename = join(config.get('outdir'), '%s.%s.txt' % (ship, time.strftime('%Y-%m-%dT%H.%M.%S', time.localtime(querytime))))