Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/en/dev/actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ Auth identifies the caller. Approval confirms that a sensitive operation should
run for that caller and those exact arguments.

```python
from quater import ApprovalRequest, AuthConfig, AuthContext, Quater
from quater import ApprovalRequest, AuthConfig, AuthContext, Quater, Request


async def authenticate(ctx: Request) -> AuthContext | None:
Expand Down
2 changes: 1 addition & 1 deletion docs/en/dev/mcp.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ safely.
Use `needs_approval=True` when auth alone should not run an operation.

```python
from quater import ApprovalRequest, AuthConfig, AuthContext, Quater
from quater import ApprovalRequest, AuthConfig, AuthContext, Quater, Request


async def authenticate(ctx: Request) -> AuthContext | None:
Expand Down
2 changes: 1 addition & 1 deletion docs/en/dev/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ Use `client.mcp` to test MCP without a separate MCP client:
```python
import pytest

from quater import AuthConfig, AuthContext, Quater, TestClient
from quater import AuthConfig, AuthContext, Quater, Request, TestClient


async def authenticate(ctx: Request) -> AuthContext | None:
Expand Down