From 3e03ca6f08d38b15f279078024b2169f3b208359 Mon Sep 17 00:00:00 2001 From: guille Date: Mon, 11 Apr 2022 12:45:00 -0400 Subject: [PATCH] remove debug function --- catalog_factories/construction_catalog_factory.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/catalog_factories/construction_catalog_factory.py b/catalog_factories/construction_catalog_factory.py index c9794029..b77fbec9 100644 --- a/catalog_factories/construction_catalog_factory.py +++ b/catalog_factories/construction_catalog_factory.py @@ -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() \ No newline at end of file + return getattr(self, self._catalog_type, lambda: None) \ No newline at end of file