mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix pylint warnings: unnecessary parens after if keyword
This commit is contained in:
parent
a2ec721661
commit
08f2021f52
1 changed files with 2 additions and 2 deletions
|
@ -1120,9 +1120,9 @@ class OutputOptionsMixIn(six.with_metaclass(MixInMeta, object)):
|
|||
)
|
||||
|
||||
def process_state_verbose(self):
|
||||
if (self.options.state_verbose == "True" or self.options.state_verbose == "true"):
|
||||
if self.options.state_verbose == "True" or self.options.state_verbose == "true":
|
||||
self.options.state_verbose = True
|
||||
elif (self.options.state_verbose == "False" or self.options.state_verbose == "false"):
|
||||
elif self.options.state_verbose == "False" or self.options.state_verbose == "false":
|
||||
self.options.state_verbose = False
|
||||
|
||||
def _mixin_after_parsed(self):
|
||||
|
|
Loading…
Add table
Reference in a new issue