summaryrefslogtreecommitdiff
path: root/cliff/show.py
diff options
context:
space:
mode:
authorDoug Hellmann <doug.hellmann@dreamhost.com>2012-06-01 11:18:09 -0400
committerDoug Hellmann <doug.hellmann@dreamhost.com>2012-06-01 11:18:09 -0400
commit069dcf9c49281701b982fad63c6f6961f3ec7b0d (patch)
tree46950ae45fff4e8c3344e26aac4dd30fac8c9b03 /cliff/show.py
parentcb6222fec44a62294c8e951bebae93fbdc9c8047 (diff)
downloadcliff-tablib-069dcf9c49281701b982fad63c6f6961f3ec7b0d.tar.gz
more pep8 work
Diffstat (limited to 'cliff/show.py')
-rw-r--r--cliff/show.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/cliff/show.py b/cliff/show.py
index 34af0b4..f788a2a 100644
--- a/cliff/show.py
+++ b/cliff/show.py
@@ -41,5 +41,8 @@ class ShowOne(DisplayCommandBase):
for c in column_names]
data = list(itertools.compress(data, selector))
formatter = self.formatters[parsed_args.formatter]
- formatter.emit_one(columns_to_include, data, self.app.stdout, parsed_args)
+ formatter.emit_one(columns_to_include,
+ data,
+ self.app.stdout,
+ parsed_args)
return 0