Skip to content

Commit a18650f

Browse files
committed
Make all arguments keyword-only
Signed-off-by: Leandro Lucarella <[email protected]>
1 parent 54735f7 commit a18650f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

RELEASE_NOTES.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@
66

77
## Upgrading
88

9-
- The `LoggingConfigUpdater` was renamed to `LoggingConfigUpdatingActor` to follow the actor naming convention.
9+
- `LoggingConfigUpdater`
10+
11+
* Renamed to `LoggingConfigUpdatingActor` to follow the actor naming convention.
12+
* Make all arguments to the constructor keyword-only.
1013

1114
## New Features
1215

src/frequenz/sdk/config/_logging_actor.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ async def run() -> None:
133133

134134
def __init__(
135135
self,
136+
*,
136137
config_recv: Receiver[Mapping[str, Any]],
137138
log_format: str = "%(asctime)s %(levelname)-8s %(name)s:%(lineno)s: %(message)s",
138139
log_datefmt: str = "%Y-%m-%dT%H:%M:%S%z",

0 commit comments

Comments
 (0)