You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: RELEASE_NOTES.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
7
7
## Upgrading
8
8
9
-
<!-- Here goes notes on how to upgrade from previous versions, including deprecations and what they should be replaced with -->
9
+
- The `frequenz-client-microgrid` dependency was bumped to `0.5.0`. This can cause dependency issues if you are using other API clients and the `frequenz-client-base` dependencies don't match.
Copy file name to clipboardExpand all lines: src/frequenz/sdk/microgrid/_power_distributing/_component_managers/_ev_charger_manager/_ev_charger_manager.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@
18
18
)
19
19
fromfrequenz.client.microgridimport (
20
20
ApiClient,
21
-
ClientError,
21
+
ApiClientError,
22
22
ComponentCategory,
23
23
EVChargerData,
24
24
)
@@ -339,7 +339,7 @@ async def _set_api_power(
339
339
_logger.warning(
340
340
"Timeout while setting power to EV charger %s", component_id
341
341
)
342
-
exceptClientErrorasexc:
342
+
exceptApiClientErrorasexc:
343
343
_logger.warning(
344
344
"Got a client error while setting power to EV charger %s: %s",
Copy file name to clipboardExpand all lines: src/frequenz/sdk/microgrid/_power_distributing/_component_managers/_pv_inverter_manager/_pv_inverter_manager.py
0 commit comments