Skip to content

Commit

Permalink
Remove parentheses on single conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
ruiokada committed Jan 3, 2024
1 parent b1b3845 commit 0004d3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atomic_soft_tab_nav.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def on_text_command(self, view, command_name, args):
if not self.view_settings.get('translate_tabs_to_spaces'):
return None

if (command_name != "move"):
if command_name != "move":
return None

selection = view.sel()
Expand Down

0 comments on commit 0004d3a

Please sign in to comment.