Make generic displayer return data unmodified

This commit is contained in:
Nick Chambers 2022-08-19 20:54:49 -05:00
parent 1e8a3c3517
commit be21a1ef4a
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,6 @@
class OutFormat:
def __init__(self, data):
self.data = data
self.spans = { }
self.rows = [ ]
@ -25,8 +26,7 @@ class OutFormat:
return str(field)
def render(self):
# FIXME: consider if this should do anything
pass
return self.data
class Basic(OutFormat):
def __init__(self, data):