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(
315
315
a webhook set up for the Actor, you do not have to add it again here.
316
316
wait_secs: The maximum number of seconds the server waits for the run to finish. If not provided,
317
317
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.
321
321
322
322
Returns:
323
323
The run object.
@@ -722,9 +722,9 @@ async def call(
722
722
a webhook set up for the Actor, you do not have to add it again here.
723
723
wait_secs: The maximum number of seconds the server waits for the run to finish. If not provided,
724
724
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.
728
728
729
729
Returns:
730
730
The run object.
Original file line number Diff line number Diff line change 21
21
from types import TracebackType
22
22
23
23
import httpx
24
- from mypy . types import Self
24
+ from typing_extensions import Self
25
25
26
26
27
27
class LogClient (ResourceClient ):
You can’t perform that action at this time.
0 commit comments