Skip to content

Commit b150e1d

Browse files
committed
Use docs_group decorator
1 parent f18133f commit b150e1d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/apify/storages/_request_list.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
from crawlee.http_clients import BaseHttpClient, HttpxHttpClient
1414
from crawlee.storages import RequestList as CrawleeRequestList
1515

16+
from apify._utils import docs_group
17+
1618
URL_NO_COMMAS_REGEX = re.compile(
1719
r'https?:\/\/(www\.)?([^\W_]|[^\W_][-\w0-9@:%._+~#=]{0,254}[^\W_])\.[a-z]{2,63}(:\d{1,5})?(\/[-\w@:%+.~#?&/=()]*)?'
1820
)
@@ -36,7 +38,7 @@ class _SimpleUrlInput(_RequestDetails):
3638
url_input_adapter = TypeAdapter(list[Union[_RequestsFromUrlInput, _SimpleUrlInput]])
3739

3840

39-
# @docs_group('Classes') # Not yet available in crawlee
41+
@docs_group('Classes') # Not yet available in crawlee
4042
class RequestList(CrawleeRequestList):
4143
"""Extends crawlee RequestList.
4244

0 commit comments

Comments
 (0)