Skip to content
Snippets Groups Projects
Commit 78f54c70 authored by Thomas Kluyver's avatar Thomas Kluyver Committed by Karim Ahmed
Browse files

remove f-string

parent c41ed720
No related branches found
No related tags found
1 merge request!1039fix(GH2): Avoid getting wrong data sources or including control devices' sources.
......@@ -7,7 +7,7 @@ import extra_data
def map_da_to_source(dc, das, source_template, karabo_id, affixes):
source_names = [
f"{source_template.format(karabo_id=karabo_id, input_source_affixes=aff)}" # noqa
source_template.format(karabo_id=karabo_id, input_source_affixes=aff) # noqa
for aff in affixes
]
if len(source_names) != len(das):
......
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