Skip to content

[docs] Add types to the attributes section #82

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 23, 2025
Merged
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
6 changes: 3 additions & 3 deletions python/restate/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ class Request:
Represents an ingress request.

Attributes:
id: The unique identifier of the request.
headers: The headers of the request.
attempt_headers: The attempt headers of the request.
id (str): The unique identifier of the request.
headers (dict[str, str]): The headers of the request.
attempt_headers (dict[str, str]): The attempt headers of the request.
body (bytes): The body of the request.
"""
id: str
Expand Down