From f0a8a4d86e4c52b401f543737d76ae8392247300 Mon Sep 17 00:00:00 2001 From: Ulf Magnusson Date: Wed, 11 Jul 2018 06:23:44 +0200 Subject: Comment formatting nit --- kconfiglib.py | 4 ---- 1 file changed, 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] -- cgit v1.2.3