Skip to content

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ccordoba12 committed Dec 28, 2016
1 parent 03df0a4 commit 6db461f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions spyder/config/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,7 @@
'exclude_unsupported': True,
'truncate': True,
'minmax': False
}
),
}),
('editor',
{
'printer_header/font/family': SANS_SERIF,
Expand Down
4 changes: 2 additions & 2 deletions spyder/widgets/variableexplorer/namespacebrowser.py
Original file line number Diff line number Diff line change
Expand Up @@ -482,13 +482,13 @@ def set_data(self, data):
self.editor.adjust_columns()

def collapse(self):
"""Collapse"""
"""Collapse."""
self.sig_collapse.emit()

@Slot(bool)
@Slot(list)
def import_data(self, filenames=None):
"""Import data from text file"""
"""Import data from text file."""
title = _("Import data")
if filenames is None:
if self.filename is None:
Expand Down

0 comments on commit 6db461f

Please sign in to comment.