Skip to content

Commit 3ba3378

Browse files
committed
Fix return type for next_page_token method
Signed-off-by: cwasicki <[email protected]>
1 parent 90daf45 commit 3ba3378

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/frequenz/client/reporting/_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def iterate_metric_samples(self) -> Generator[MetricSample, None, None]:
9595
)
9696

9797
@property
98-
def next_page_token(self) -> Any:
98+
def next_page_token(self) -> str | None:
9999
"""Get the token for the next page of data.
100100
101101
Returns:

0 commit comments

Comments
 (0)