From 7957f4837b62412e12d773eb3433c879cb099530 Mon Sep 17 00:00:00 2001 From: TheFGFSEagle Date: Tue, 28 Jun 2022 00:00:41 +0200 Subject: [PATCH] Fix indentation of beta values --- aircraft/vsphist2jsbtable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aircraft/vsphist2jsbtable.py b/aircraft/vsphist2jsbtable.py index 0aed015..14b5eeb 100755 --- a/aircraft/vsphist2jsbtable.py +++ b/aircraft/vsphist2jsbtable.py @@ -79,7 +79,7 @@ def print_table(cases, coeff, indent, precision): print(indent + 'aero/beta-deg') #print(indent + 'velocities/mach') print(indent + "") - print(indent + indent + indent + indent.join(map(str, coeffs[list(coeffs.keys())[0]].keys()))) + print(indent + indent + indent + (indent + indent).join(map(str, coeffs[list(coeffs.keys())[0]].keys()))) for AoA in coeffs: print(indent + indent + str(AoA), end="") for Beta in coeffs[AoA]: