Skip to content
Snippets Groups Projects
Commit 33b2ef35 authored by Colm Talbot's avatar Colm Talbot
Browse files

Remove f-string

parent 4c6a1e63
No related branches found
No related tags found
1 merge request!868Allow sampling in aligned spin and spin magnitude
Pipeline #152421 passed
......@@ -234,7 +234,7 @@ def convert_to_lal_binary_black_hole_parameters(parameters):
for idx in ['1', '2']:
key = 'chi_{}'.format(idx)
if key in original_keys:
if f"a_{idx}" not in original_keys:
if "a_{}".format(idx) not in original_keys:
converted_parameters['a_{}'.format(idx)] = abs(
converted_parameters[key])
converted_parameters['cos_tilt_{}'.format(idx)] = \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment