From 5f6f9c52a7cbe9e4ce8c37baec5f0f0f8473b7cb Mon Sep 17 00:00:00 2001 From: polyfloyd Date: Fri, 5 Jan 2024 16:50:22 +0100 Subject: [PATCH] Add cool padding to re-written lines --- inflatinator/revbank.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/inflatinator/revbank.py b/inflatinator/revbank.py index 8e3e38d..b1fa70f 100644 --- a/inflatinator/revbank.py +++ b/inflatinator/revbank.py @@ -16,11 +16,10 @@ def find_product_details(vendor_and_sku): def update_product_pricings(src): - lines = src.split('\n') - find_updatable = re.compile(r'#\s*(?P\S+)\s+(?P\d+)x$') find_aliases = re.compile(r'^(?P\S+)') + lines = src.split('\n') lines_out = [] for line in lines: @@ -45,6 +44,6 @@ def update_product_pricings(src): # Round up to 5ct. unit_price = (unit_price * 20).quantize(Decimal('1'), rounding=ROUND_UP) / 20 - lines_out.append(f'{aliases}\t{unit_price:.2f}\t{d["name"]} # {m["sku"]} {units}x') + lines_out.append(f'{aliases:<15} {unit_price:.2f} {d["name"]:<32} # {m["sku"]} {units}x') return '\n'.join(lines_out)