mesonmain: Remove useless ternary

This ternary checks the value of a bool, and returns the same value.
pull/2636/head
Dylan Baker 7 years ago
parent 8eaa0a2732
commit e1c9d2f53a
  1. 2
      mesonbuild/mesonmain.py

@ -28,7 +28,7 @@ default_warning = '1'
def add_builtin_argument(p, name, **kwargs):
k = kwargs.get('dest', name.replace('-', '_'))
c = coredata.get_builtin_option_choices(k)
b = True if kwargs.get('action', None) in ['store_true', 'store_false'] else False
b = kwargs.get('action', None) in ['store_true', 'store_false']
h = coredata.get_builtin_option_description(k)
if not b:
h = h.rstrip('.') + ' (default: %s).' % coredata.get_builtin_option_default(k)

Loading…
Cancel
Save