Skip to content

Commit e6df2d6

Browse files
committed
chore(nimbus): apply ruff format to WIN10_EXISTING_USERS_NEED_DEFAULT description
Because * CI's ruff format --check was failing on the new targeting constant because the description string fit on one line. This commit * Collapses the multi-line description=(...) onto a single line so ruff format --check passes.
1 parent 6041b39 commit e6df2d6

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

experimenter/experimenter/targeting/constants.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1168,9 +1168,7 @@ def __post_init__(self):
11681168
WIN10_EXISTING_USERS_NEED_DEFAULT = NimbusTargetingConfig(
11691169
name="Windows 10 existing users needing default",
11701170
slug="win10_existing_users_need_default",
1171-
description=(
1172-
"Windows 10 users with profiles older than 28 days needing default"
1173-
),
1171+
description=("Windows 10 users with profiles older than 28 days needing default"),
11741172
targeting=f"{PROFILE28DAYS} && {WIN10_NEED_DEFAULT.targeting}",
11751173
desktop_telemetry="",
11761174
sticky_required=False,

0 commit comments

Comments
 (0)