diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2018-07-11 06:23:44 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2018-07-11 14:55:25 +0200 |
| commit | f0a8a4d86e4c52b401f543737d76ae8392247300 (patch) | |
| tree | d486d8087c8733c79890ce4323b70f0a0535b517 /kconfiglib.py | |
| parent | e927c3722aeba9fa5336b92bf8ca6967f28bd70f (diff) | |
Comment formatting nit
Diffstat (limited to 'kconfiglib.py')
| -rw-r--r-- | kconfiglib.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/kconfiglib.py b/kconfiglib.py index 42cf93f..0ae4255 100644 --- a/kconfiglib.py +++ b/kconfiglib.py @@ -2835,25 +2835,21 @@ class Kconfig(object): self._make_and(cur.prompt[1], visible_if)) # Propagate dependencies to defaults - if cur.defaults: cur.defaults = [(default, self._make_and(cond, dep)) for default, cond in cur.defaults] # Propagate dependencies to ranges - if cur.ranges: cur.ranges = [(low, high, self._make_and(cond, dep)) for low, high, cond in cur.ranges] # Propagate dependencies to selects - if cur.selects: cur.selects = [(target, self._make_and(cond, dep)) for target, cond in cur.selects] # Propagate dependencies to implies - if cur.implies: cur.implies = [(target, self._make_and(cond, dep)) for target, cond in cur.implies] |
