Skip to content

Commit ac2f0f3

Browse files
authored
Use = instead of : in codex setup (#1420)
1 parent 57aa3b2 commit ac2f0f3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

logfire/_internal/cli/prompt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
[mcp_servers.logfire]
1919
command = "uvx"
2020
args = ["logfire-mcp@latest"]
21-
env = {{ "LOGFIRE_READ_TOKEN": "{token}" }}
21+
env = {{ "LOGFIRE_READ_TOKEN" = "{token}" }}
2222
"""
2323

2424

tests/test_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1762,7 +1762,7 @@ def test_parse_prompt_codex(prompt_http_calls: None, capsys: pytest.CaptureFixtu
17621762
[mcp_servers.logfire]
17631763
command = "uvx"
17641764
args = ["logfire-mcp@latest"]
1765-
env = { "LOGFIRE_READ_TOKEN": "fake_token" }
1765+
env = { "LOGFIRE_READ_TOKEN" = "fake_token" }
17661766
""")
17671767
out, err = capsys.readouterr()
17681768
assert out == snapshot('This is the prompt\n')

0 commit comments

Comments
 (0)