Skip to content
Snippets Groups Projects

Resolve "Problems with background I/O"

Merged Ivan Kondov requested to merge 440-problems-with-background-i-o into master
All threads resolved!
2 files
+ 11
8
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -110,7 +110,9 @@ def get_prettytable(dataframe):
table = class_(list(dataframe.columns))
for tpl in dataframe.itertuples(index=False, name=None):
table.add_row(tpl)
return str(table)
table.align = 'l'
table.max_width = 120
return table
class SessionManager(InteractiveConsole):
Loading