From 3fc3d39d5df290ab797097f9bda001a64abea8cf Mon Sep 17 00:00:00 2001 From: Nicolas Kruse Date: Mon, 2 Jun 2025 16:39:46 +0200 Subject: [PATCH] Code style adjustments --- thermo_data/combine_data.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/thermo_data/combine_data.py b/thermo_data/combine_data.py index b713dd3..2351bc6 100644 --- a/thermo_data/combine_data.py +++ b/thermo_data/combine_data.py @@ -36,10 +36,10 @@ def main(): f.write('species:\n') for species in sorted(therm_prop, key=lambda s: s['name']): f.write('\n- ' + yaml.dump({'name': species['name']}, default_flow_style=False)) - f.write(f' composition: {yaml.dump(species["composition"],default_flow_style=True)}') + f.write(f' composition: {yaml.dump(species["composition"], default_flow_style=True)}') f.write(' thermo:\n') f.write(f' model: {species["thermo"]["model"]}\n') - f.write(f' temperature-ranges: {yaml.dump(species["thermo"]["temperature-ranges"],default_flow_style=True)}') + f.write(f' temperature-ranges: {yaml.dump(species["thermo"]["temperature-ranges"], default_flow_style=True)}') f.write(' data:\n') for d in species['thermo']['data']: f.write(f' - {d}\n')