Skip to content

Commit b126399

Browse files
Fix typo in trading CLI help text (#166)
2 parents 2cf8d6c + 820846c commit b126399

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

RELEASE_NOTES.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Frequenz Electricity Trading API Client Release Notes
22

3+
## Summary
4+
5+
<!-- Here goes a general summary of what this release is about -->
6+
7+
## Upgrading
8+
9+
<!-- Here goes notes on how to upgrade from previous versions, including deprecations and what they should be replaced with -->
10+
11+
## New Features
12+
13+
<!-- Here goes the main new features and examples or instructions on how to use them -->
14+
315
## Bug Fixes
416

5-
* Fixed a public order book stream bug where a stream was reused for requests with different start and stop time parameters.
17+
* Fixed typo in the trading CLI help text.

src/frequenz/client/electricity_trading/cli/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def receive_public_orders( # pylint: disable=too-many-arguments
9292
delivery_start: datetime,
9393
sign_secret: str | None = None,
9494
) -> None:
95-
"""List and/or stream public trades."""
95+
"""List and/or stream public orders."""
9696
asyncio.run(
9797
run_receive_public_orders(
9898
url=url,

0 commit comments

Comments
 (0)