Skip to content

Commit 50a6056

Browse files
committed
Bug fix for: TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'.
1 parent 5816609 commit 50a6056

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':
24+
if tab_size == 'auto' or tab_size == 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)