Skip to content

Commit 0102e9f

Browse files
committed
Fix |prop| prolog
1 parent f62ff8a commit 0102e9f

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

twitchio/ext/routines/__init__.py

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -265,18 +265,12 @@ async def _routine_loop(self, *args: Any, **kwargs: Any) -> None:
265265

266266
@property
267267
def args(self) -> tuple[Any, ...]:
268-
"""|prop|
269-
270-
Property returning any positional arguments passed to the routine via :meth:`.start`.
271-
"""
268+
"""Property returning any positional arguments passed to the routine via :meth:`.start`."""
272269
return self._args
273270

274271
@property
275272
def kwargs(self) -> Any:
276-
"""|prop|
277-
278-
Property returning any keyword arguments passed to the routine via :meth:`.start`.
279-
"""
273+
"""Property returning any keyword arguments passed to the routine via :meth:`.start`."""
280274
return self._kwargs
281275

282276
def start(self, *args: Any, **kwargs: Any) -> asyncio.Task[None]:

0 commit comments

Comments
 (0)