Song
Results
2
issues of
Song
The _get_table_ method. It's better to do it like this: _MyClass_ -> _my_class_
``` return [(k,str(v)) for k,v in self.entity.__dict__.iteritems() if not k.startswith("_") and not k.startswith("__")] ``` It's the same as: ``` return [(k,str(v)) for k,v in self.entity.__dict__.iteritems() if not k.startswith("_")] ```