File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -321,8 +321,7 @@ def _asdict_with_global_options(self) -> dict:
321
321
merged_options : dict = {** global_options , ** provider_options }
322
322
323
323
if self .labels is not None and _GLOBAL_OPTIONS .labels is not None :
324
- merged_options ["labels" ] = {
325
- ** _GLOBAL_OPTIONS .labels , ** self .labels }
324
+ merged_options ["labels" ] = {** _GLOBAL_OPTIONS .labels , ** self .labels }
326
325
if "labels" not in merged_options :
327
326
merged_options ["labels" ] = {}
328
327
preserve_external_changes : bool = merged_options .get (
@@ -465,7 +464,7 @@ def _endpoint(
465
464
_manifest .TaskQueueTrigger (
466
465
rateLimits = rate_limits ,
467
466
retryConfig = retry_config ,
468
- ),
467
+ ),
469
468
}
470
469
return _manifest .ManifestEndpoint (
471
470
** _typing .cast (_typing .Dict , kwargs_merged ))
@@ -854,7 +853,7 @@ def _endpoint(
854
853
schedule = self .schedule ,
855
854
timeZone = time_zone ,
856
855
retryConfig = retry_config ,
857
- ),
856
+ ),
858
857
}
859
858
return _manifest .ManifestEndpoint (
860
859
** _typing .cast (_typing .Dict , kwargs_merged ))
You can’t perform that action at this time.
0 commit comments