@@ -124,7 +124,7 @@ def update(
124124 actor_standby_memory_mbytes : int | None = None ,
125125 pricing_infos : list [dict [str , Any ]] | None = None ,
126126 actor_permission_level : ActorPermissionLevel | None = None ,
127- tagged_builds : dict [str , None | dict [str , str ]] | None = None ,
127+ tagged_builds : dict [str , dict [str , str ] | None ] | None = None ,
128128 timeout : Timeout = 'short' ,
129129 ) -> Actor :
130130 """Update the Actor with the specified fields.
@@ -305,7 +305,7 @@ def call(
305305 webhooks : WebhooksList | None = None ,
306306 force_permission_level : ActorPermissionLevel | None = None ,
307307 wait_duration : timedelta | None = None ,
308- logger : Logger | None | Literal ['default' ] = 'default' ,
308+ logger : Logger | Literal ['default' ] | None = 'default' ,
309309 timeout : Timeout = 'no_timeout' ,
310310 ) -> Run | None :
311311 """Start the Actor and wait for it to finish before returning the Run object.
@@ -620,7 +620,7 @@ async def update(
620620 actor_standby_memory_mbytes : int | None = None ,
621621 pricing_infos : list [dict [str , Any ]] | None = None ,
622622 actor_permission_level : ActorPermissionLevel | None = None ,
623- tagged_builds : dict [str , None | dict [str , str ]] | None = None ,
623+ tagged_builds : dict [str , dict [str , str ] | None ] | None = None ,
624624 timeout : Timeout = 'short' ,
625625 ) -> Actor :
626626 """Update the Actor with the specified fields.
@@ -801,7 +801,7 @@ async def call(
801801 webhooks : WebhooksList | None = None ,
802802 force_permission_level : ActorPermissionLevel | None = None ,
803803 wait_duration : timedelta | None = None ,
804- logger : Logger | None | Literal ['default' ] = 'default' ,
804+ logger : Logger | Literal ['default' ] | None = 'default' ,
805805 timeout : Timeout = 'no_timeout' ,
806806 ) -> Run | None :
807807 """Start the Actor and wait for it to finish before returning the Run object.
0 commit comments