do not display columns with only None values
This commit is contained in:
parent
8997b1fe27
commit
16b7b1d9be
1 changed files with 1 additions and 1 deletions
|
|
@ -50,7 +50,7 @@ class TableFormatter(IFormatter):
|
||||||
for i in xrange(len(self.keys)):
|
for i in xrange(len(self.keys)):
|
||||||
available = False
|
available = False
|
||||||
for line in self.queue:
|
for line in self.queue:
|
||||||
if line[i] is not NotLoaded and line[i] is not NotAvailable:
|
if line[i] is not NotLoaded and line[i] is not NotAvailable and line[i] is not None:
|
||||||
available = True
|
available = True
|
||||||
break
|
break
|
||||||
if available:
|
if available:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue