Skip to content

Commit 45b222e

Browse files
committed
Minor type update [skip ci]
1 parent 60dedad commit 45b222e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

neurocaps/utils/_decorators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def check_required_attributes(required_attrs: list[str]) -> Callable:
2323

2424
def decorator(func: Callable) -> None:
2525
@functools.wraps(func)
26-
def wrapper(self, *args: Any, **kwargs: Any) -> Callable:
26+
def wrapper(self, *args: Any, **kwargs: Any) -> Any:
2727
for attr_name in required_attrs:
2828
if getattr(self, attr_name, None) is None:
2929
if attr_name == "_caps":

0 commit comments

Comments
 (0)