Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
* Add more edge cases to the integration tests.
* Add idiomatic string representations for `Power` and `Price` classes.
* Add support for timeouts in the gRPC function calls
* Export Client constants for external use

## Bug Fixes

Expand Down
14 changes: 13 additions & 1 deletion src/frequenz/client/electricity_trading/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,14 @@ async def stream_trades():

"""

from ._client import Client
from ._client import (
MAX_PRICE,
MIN_PRICE,
MIN_QUANTITY_MW,
PRECISION_DECIMAL_PRICE,
PRECISION_DECIMAL_QUANTITY,
Client,
)
from ._types import (
Currency,
DeliveryArea,
Expand Down Expand Up @@ -231,4 +238,9 @@ async def stream_trades():
"StateReason",
"Trade",
"TradeState",
"MAX_PRICE",
"MIN_PRICE",
"MIN_QUANTITY_MW",
"PRECISION_DECIMAL_QUANTITY",
"PRECISION_DECIMAL_PRICE",
]
Loading