Skip to content

Commit

Permalink
Fix return type for next_page_token method
Browse files Browse the repository at this point in the history
Signed-off-by: cwasicki <[email protected]>
  • Loading branch information
cwasicki committed Apr 12, 2024
1 parent 90daf45 commit 3ba3378
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frequenz/client/reporting/_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def iterate_metric_samples(self) -> Generator[MetricSample, None, None]:
)

@property
def next_page_token(self) -> Any:
def next_page_token(self) -> str | None:
"""Get the token for the next page of data.
Returns:
Expand Down

0 comments on commit 3ba3378

Please sign in to comment.