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
2 changes: 1 addition & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

## Upgrading

<!-- Here goes notes on how to upgrade from previous versions, including deprecations and what they should be replaced with -->
* Change the `curtailable` flag default of the PV config to `None`.

## New Features

Expand Down
2 changes: 1 addition & 1 deletion src/frequenz/gridpool/_microgrid_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ class PVConfig:
rated_power: float | None = None
"""Rated power of the inverters in Watt."""

curtailable: bool = False
curtailable: bool | None = None
"""Flag to indicate if PV system can be curtailed."""


Expand Down
Loading