Fix formatting of deprecated sync functions warning
Details in the linked bug.
Fixed: 344785744
Change-Id: If415bda800502ff7b33f60f90efad6db6fb3d969
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5593874
Reviewed-by: Dominic Battre <[email protected]>
Commit-Queue: Victor Vianna <[email protected]>
Cr-Commit-Position: refs/heads/main@{#1310015}
diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index 45eaa38..4c0dbec 100644
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -2017,7 +2017,7 @@
'that also supports signin::ConsentLevel::kSignin when appropriate. It is '
'safe to ignore this warning if you are just moving an existing call, or if '
'you want special handling for users in the legacy state. In doubt, reach '
- 'out to //components/sync/OWNERS.'
+ 'out to //components/sync/OWNERS.',
)
# C++ functions related to signin::ConsentLevel::kSync which are deprecated.
@@ -2034,16 +2034,12 @@
),
BanRule(
'IsSyncFeatureEnabled',
- (
_DEPRECATED_SYNC_CONSENT_FUNCTION_WARNING,
- ),
False,
),
BanRule(
'IsSyncFeatureActive',
- (
_DEPRECATED_SYNC_CONSENT_FUNCTION_WARNING,
- ),
False,
),
)