File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
src/apify_client/clients/resource_clients Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -315,9 +315,9 @@ def call(
315315 a webhook set up for the Actor, you do not have to add it again here.
316316 wait_secs: The maximum number of seconds the server waits for the run to finish. If not provided,
317317 waits indefinitely.
318- logger: Logger used to redirect logs from the Actor run. By default, it is set to "default" which means that
319- the default logger will be created and used. Setting `None` will disable any log propagation. Passing
320- custom logger will redirect logs to the provided logger.
318+ logger: Logger used to redirect logs from the Actor run. Using "default" literal means that a predefined
319+ default logger will be used. Setting `None` will disable any log propagation. Passing custom logger
320+ will redirect logs to the provided logger.
321321
322322 Returns:
323323 The run object.
@@ -722,9 +722,9 @@ async def call(
722722 a webhook set up for the Actor, you do not have to add it again here.
723723 wait_secs: The maximum number of seconds the server waits for the run to finish. If not provided,
724724 waits indefinitely.
725- logger: Logger used to redirect logs from the Actor run. By default, it is set to "default" which means that
726- the default logger will be created and used. Setting `None` will disable any log propagation. Passing
727- custom logger will redirect logs to the provided logger.
725+ logger: Logger used to redirect logs from the Actor run. Using "default" literal means that a predefined
726+ default logger will be used. Setting `None` will disable any log propagation. Passing custom logger
727+ will redirect logs to the provided logger.
728728
729729 Returns:
730730 The run object.
Original file line number Diff line number Diff line change 2121 from types import TracebackType
2222
2323 import httpx
24- from mypy . types import Self
24+ from typing_extensions import Self
2525
2626
2727class LogClient (ResourceClient ):
You can’t perform that action at this time.
0 commit comments