Skip to content

Commit 9c1789b

Browse files
committed
Remove f string usage
1 parent 4f3d648 commit 9c1789b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/semra/web/autocomplete/autocomplete_blueprint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def autocomplete_search(
3131
prefix_clause = f"{prefix}* OR {prefix}~1"
3232
top_n = min(top_n, 100)
3333

34-
query = f"""\
34+
query = """\
3535
CALL db.index.fulltext.queryNodes("concept_curie_name_ft", $prefix) YIELD node
3636
RETURN node.name, node.curie
3737
LIMIT $top_n

0 commit comments

Comments
 (0)