From 1ff8642c27820ec7132cffeb3eb1ce1ae8faeed9 Mon Sep 17 00:00:00 2001 From: Administrator Date: Sat, 7 Oct 2023 14:03:47 +0000 Subject: [PATCH] fix format --- build.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.py b/build.py index 951b429..6054f05 100644 --- a/build.py +++ b/build.py @@ -14,10 +14,10 @@ if __name__ == '__main__': logging.info('reading csv') reader = csv.DictReader(file) for row in reader: - subst += f'{row['service']}' - '{row["url"]}' - '{row["ip"]}' - '{row["comment"]}' + subst += f'{row['service']}' + \ + f'{row["url"]}' + \ + f'{row["ip"]}' + \ + f'{row["comment"]}' logging.info('write file') with open('template/template.html') as inf: