Skip to content

Commit 2390bcc

Browse files
test
1 parent 6b90db1 commit 2390bcc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from dataclasses import dataclass
1+
from dataclasses import dataclass, field
22
from http import HTTPMethod
33
from typing import Any, Callable, Dict
44

@@ -8,4 +8,4 @@ class EndpointConfig:
88
path: str
99
method: HTTPMethod
1010
handler: Callable
11-
other_options: Dict[str, Any] = {}
11+
other_options: Dict[str, Any] = field(default_factory=dict)

0 commit comments

Comments
 (0)