refactor: cleanup

This commit is contained in:
Swann
2019-09-26 22:42:42 +02:00
parent c91ed17c23
commit e1657f1184
4 changed files with 15 additions and 21 deletions

View File

@ -88,7 +88,6 @@ class Dumper:
def _dump_any(self, any, depth):
for filter_function, dump_function in self.type_subset:
if filter_function(any):
# print(any)
return dump_function[not (depth >= self.depth)](any, depth + 1)
def _build_inline_dump_functions(self):