Skip to content

Commit 441a790

Browse files
committed
chore: parse the field to bool
1 parent 192950d commit 441a790

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/apify/_configuration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -335,12 +335,12 @@ class Configuration(CrawleeConfiguration):
335335
] = None
336336

337337
user_is_paying: Annotated[
338-
str | None,
338+
bool,
339339
Field(
340340
alias='apify_user_is_paying',
341-
description='If set to "1", the user calling the Actor is paying user',
341+
description='True if the user calling the Actor is paying user',
342342
),
343-
] = None
343+
] = False
344344

345345
web_server_port: Annotated[
346346
int,

0 commit comments

Comments
 (0)