Skip to content

Commit ed79754

Browse files
committed
Use the dataclass decorator from dataclasses
We are not using the `.Schema` attribute from marshmallow_dataclass, so it is better to just stick to the standard `dataclass` decorator to make thing simpler. Signed-off-by: Leandro Lucarella <[email protected]>
1 parent ba2cf5e commit ed79754

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/frequenz/sdk/config/_logging_actor.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,12 @@
55

66
import logging
77
from collections.abc import Mapping
8-
from dataclasses import field
8+
from dataclasses import dataclass, field
99
from typing import Annotated, Any
1010

1111
import marshmallow
1212
import marshmallow.validate
1313
from frequenz.channels import Receiver
14-
from marshmallow_dataclass import dataclass
1514

1615
from ..actor import Actor
1716

0 commit comments

Comments
 (0)