diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2019-07-01 22:20:57 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2019-07-01 23:48:21 +0200 |
| commit | 7c7cf673305f6f28e539e2c3db2e6d6bd89bdf28 (patch) | |
| tree | b4f0ba1258dfd3677f3a6959004a2c39fb4a5163 | |
| parent | 7892cfef16e8b3d1745feafe20306a783ddf770f (diff) | |
Remove redundant parens
| -rw-r--r-- | kconfiglib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kconfiglib.py b/kconfiglib.py index 838e4e7..792e20f 100644 --- a/kconfiglib.py +++ b/kconfiglib.py @@ -4145,7 +4145,7 @@ class Symbol(object): See the class documentation. """ if self.orig_type is TRISTATE and \ - ((self.choice and self.choice.tri_value == 2) or + (self.choice and self.choice.tri_value == 2 or not self.kconfig.modules.tri_value): return BOOL |
