Skip to content

Commit 02a1eb2

Browse files
committed
Review comments
1 parent cba571f commit 02a1eb2

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/apify_client/clients/resource_clients/actor.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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.

src/apify_client/clients/resource_clients/log.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from types import TracebackType
2222

2323
import httpx
24-
from mypy.types import Self
24+
from typing_extensions import Self
2525

2626

2727
class LogClient(ResourceClient):

0 commit comments

Comments
 (0)