Skip to content

Commit

Permalink
inserted missing line and syle corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
pwoosam committed Dec 10, 2016
1 parent 95c85f7 commit bcec129
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion spyder/widgets/sourcecode/codeeditor.py
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ def setup_editor(self, linenumbers=True, language=None, markers=False,
calltips=None, go_to_definition=False,
close_parentheses=True, close_quotes=False,
add_colons=True, auto_unindent=True, strict_indent=True,
indent_chars=" "*4, tab_stop_width_spaces=4,
indent_chars=" " * 4, tab_stop_width_spaces=4,
cloned_from=None, filename=None, occurrence_timeout=1500):

# Code completion and calltips
Expand All @@ -684,6 +684,7 @@ def setup_editor(self, linenumbers=True, language=None, markers=False,
self.set_close_quotes_enabled(close_quotes)
self.set_add_colons_enabled(add_colons)
self.set_auto_unindent_enabled(auto_unindent)
self.set_strict_indent_enabled(strict_indent)
self.set_indent_chars(indent_chars)
self.set_tab_stop_width_spaces(tab_stop_width_spaces)

Expand Down

0 comments on commit bcec129

Please sign in to comment.