Skip to content

Commit f24e54d

Browse files
authored
fix: remove restriction on positional arguments only (#1186)
1 parent 8543428 commit f24e54d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interactions/utils/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ async def command(ctx):
178178

179179

180180
def search_iterable(
181-
iterable: Iterable[_T], check: Optional[Callable[[_T], bool]] = None, /, **kwargs
181+
iterable: Iterable[_T], check: Optional[Callable[[_T], bool]] = None, **kwargs
182182
) -> List[_T]:
183183
r"""
184184
.. versionadded:: 4.3.0

0 commit comments

Comments
 (0)