Skip to content

Commit 2c278a4

Browse files
committed
fix: Formatting
1 parent 790fe2e commit 2c278a4

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Diff for: src/firebase_functions/options.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -321,8 +321,7 @@ def _asdict_with_global_options(self) -> dict:
321321
merged_options: dict = {**global_options, **provider_options}
322322

323323
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}
326325
if "labels" not in merged_options:
327326
merged_options["labels"] = {}
328327
preserve_external_changes: bool = merged_options.get(
@@ -465,7 +464,7 @@ def _endpoint(
465464
_manifest.TaskQueueTrigger(
466465
rateLimits=rate_limits,
467466
retryConfig=retry_config,
468-
),
467+
),
469468
}
470469
return _manifest.ManifestEndpoint(
471470
**_typing.cast(_typing.Dict, kwargs_merged))
@@ -854,7 +853,7 @@ def _endpoint(
854853
schedule=self.schedule,
855854
timeZone=time_zone,
856855
retryConfig=retry_config,
857-
),
856+
),
858857
}
859858
return _manifest.ManifestEndpoint(
860859
**_typing.cast(_typing.Dict, kwargs_merged))

0 commit comments

Comments
 (0)