fix wrong order of comments (#899)

Signed-off-by: vincent-pli <justdoit.pli@gmail.com>
This commit is contained in:
Peng Li
2025-06-07 22:18:26 +08:00
committed by GitHub
parent 544176770b
commit 8276632caa

View File

@@ -350,12 +350,12 @@ class ProgressNotificationParams(NotificationParams):
total is unknown.
"""
total: float | None = None
"""Total number of items to process (or total progress required), if known."""
message: str | None = None
"""
Message related to progress. This should provide relevant human readable
progress information.
"""
message: str | None = None
"""Total number of items to process (or total progress required), if known."""
model_config = ConfigDict(extra="allow")