[git_cl] Remove config from git_cl module.
No downstream repos use this functionality now, using instead the simpler, explicit, set_default_repo_location method. Bug: 1462728 Change-Id: Iaf3836b30234f0b798c53f27639ab19c1b134ac9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/4669517 Auto-Submit: Robbie Iannucci <iannucci@chromium.org> Reviewed-by: Gavin Mak <gavinmak@google.com> Commit-Queue: Robbie Iannucci <iannucci@chromium.org>changes/17/4669517/3
parent
11d847f07b
commit
247429efd9
@ -1,21 +0,0 @@
|
||||
# Copyright 2013 The Chromium Authors. All rights reserved.
|
||||
# Use of this source code is governed by a BSD-style license that can be
|
||||
# found in the LICENSE file.
|
||||
|
||||
import types
|
||||
|
||||
from recipe_engine.config import config_item_context, ConfigGroup, BadConf
|
||||
from recipe_engine.config import Single
|
||||
from recipe_engine.config_types import Path
|
||||
|
||||
|
||||
def BaseConfig(**_kwargs): # pragma: no cover
|
||||
return ConfigGroup(
|
||||
repo_location=Single(Path)
|
||||
)
|
||||
|
||||
config_ctx = config_item_context(BaseConfig)
|
||||
|
||||
@config_ctx()
|
||||
def basic(c): # pragma: no cover
|
||||
pass
|
Loading…
Reference in New Issue