Skip to content

Commit

Permalink
west: build: appease the linter
Browse files Browse the repository at this point in the history
The linter is complaining about unnecessary parens.

Signed-off-by: Martí Bolívar <[email protected]>
  • Loading branch information
mbolivar-nordic authored and carlescufi committed Mar 26, 2023
1 parent 5880fee commit 1f9ab85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/west_commands/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def do_run(self, args, remainder):
'treating unknown build.pristine value "{}" as "never"'.
format(pristine))
pristine = 'never'
self.auto_pristine = (pristine == 'auto')
self.auto_pristine = pristine == 'auto'

log.dbg('pristine: {} auto_pristine: {}'.format(pristine,
self.auto_pristine),
Expand Down

0 comments on commit 1f9ab85

Please sign in to comment.