mirror of
https://github.com/apache/superset.git
synced 2026-04-13 21:24:28 +00:00
13 lines
223 B
Python
13 lines
223 B
Python
# pylint: disable=C,R,W
|
|
|
|
|
|
class Row(object):
|
|
def __init__(self, values):
|
|
self.values = values
|
|
|
|
def __name__(self):
|
|
return 'Row'
|
|
|
|
def __iter__(self):
|
|
return (item for item in self.values)
|