Skip to content

Commit 17da292

Browse files
committed
Avoid double quotes in f-string
1 parent b0f0c9c commit 17da292

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/confcom/azext_confcom/command/containers_from_radius.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def containers_from_radius(
7777
image_config = get_image_config(image)
7878
image_config["env_rules"] += [
7979
{
80-
"pattern": f"{k}={v["value"]}",
80+
"pattern": f'{k}={v["value"]}',
8181
"strategy": "string",
8282
"required": False,
8383
}

0 commit comments

Comments
 (0)