Skip to content
Draft
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
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def update_state_from_response(
) -> None:
"""Processes a server response, performs integrity checks, and updates state."""

# Capture read_handle if provided.
# Capture read_handle if provided
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

For consistency with the PEP 8 style guide, comments that are complete sentences should end with a period. Please add the period back to this comment.

Suggested change
# Capture read_handle if provided
# Capture read_handle if provided.
References
  1. PEP 8, the style guide for Python code, recommends that comments be written as complete sentences. This includes proper punctuation, such as ending a sentence with a period. (link)

if response.read_handle:
state["read_handle"] = response.read_handle

Expand Down
Loading