remove debug function

This commit is contained in:
Guille Gutierrez 2022-04-11 12:45:00 -04:00
parent 9287da7a66
commit 3e03ca6f08

View File

@ -38,12 +38,4 @@ class ConstructionCatalogFactory:
Enrich the city given to the class using the class given handler
:return: Catalog
"""
return getattr(self, self._catalog_type, lambda: None)
@property
def catalog_debug(self) -> Catalog:
"""
Enrich the city given to the class using the class given handler
:return: Catalog
"""
return self._nrel()
return getattr(self, self._catalog_type, lambda: None)