Skip to content

Commit 90c09ce

Browse files
author
Oscar Ibatullin
committed
make it pythonic
1 parent 50a6056 commit 90c09ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PythonBreakpoints.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
settings = sublime.load_settings("PythonBreakpoints.sublime-settings")
2222

2323
tab_size = settings.get('tab_size')
24-
if tab_size == 'auto' or tab_size == None:
24+
if tab_size == 'auto' or tab_size is None:
2525
g_settings = sublime.load_settings('Preferences.sublime-settings')
2626
tab_size = g_settings.get('tab_size', 4)
2727

0 commit comments

Comments
 (0)