We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50a6056 commit 90c09ceCopy full SHA for 90c09ce
PythonBreakpoints.py
@@ -21,7 +21,7 @@
21
settings = sublime.load_settings("PythonBreakpoints.sublime-settings")
22
23
tab_size = settings.get('tab_size')
24
-if tab_size == 'auto' or tab_size == None:
+if tab_size == 'auto' or tab_size is None:
25
g_settings = sublime.load_settings('Preferences.sublime-settings')
26
tab_size = g_settings.get('tab_size', 4)
27
0 commit comments