Skip to content

Commit fc22b5d

Browse files
committed
fixed failing test
1 parent 45dfff9 commit fc22b5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ellar/common/decorators/controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def _decorator(cls: t.Type) -> t.Type[ControllerBase]:
163163
attrs.update({REFLECT_TYPE: cls.__dict__[REFLECT_TYPE]})
164164
new_cls = type(cls.__name__, (cls, ControllerBase), attrs)
165165

166-
_controller_type = t.cast(t.Type[ControllerBase], new_cls)
166+
_controller_type = t.cast(t.Type[ControllerBase], new_cls)
167167

168168
_tag = _controller_type.controller_class_name()
169169

0 commit comments

Comments
 (0)