We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e21fa5e commit 4dd94b6Copy full SHA for 4dd94b6
src/apify_client/clients/resource_clients/actor.py
@@ -88,6 +88,7 @@ def get_actor_representation(
88
},
89
'pricingInfos': pricing_infos,
90
'actorPermissionLevel': actor_permission_level,
91
+ 'taggedBuilds': tagged_builds,
92
}
93
94
# Only include actorStandby if at least one field is provided
@@ -110,10 +111,6 @@ def get_actor_representation(
110
111
'memoryMbytes': actor_standby_memory_mbytes,
112
113
- # Add taggedBuilds if provided
114
- if tagged_builds is not None:
115
- actor_dict['taggedBuilds'] = tagged_builds
116
-
117
return actor_dict
118
119
0 commit comments