From f2201c9575fc052545974404768b35f1229ff702 Mon Sep 17 00:00:00 2001 From: Guille Date: Mon, 10 Jul 2023 16:11:44 -0400 Subject: [PATCH] remove useless class --- .../transport/fast_charging_infrastructure.py | 32 ------------------- 1 file changed, 32 deletions(-) delete mode 100644 hub/city_model_structure/transport/fast_charging_infrastructure.py diff --git a/hub/city_model_structure/transport/fast_charging_infrastructure.py b/hub/city_model_structure/transport/fast_charging_infrastructure.py deleted file mode 100644 index c772cee5..00000000 --- a/hub/city_model_structure/transport/fast_charging_infrastructure.py +++ /dev/null @@ -1,32 +0,0 @@ -""" -Fast charging infrastructure module -SPDX - License - Identifier: LGPL - 3.0 - or -later -Copyright © 2022 Concordia CERC group -Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca -""" - - -class FastChargingInfrastructure: - """ - FastChargingInfrastructure class - """ - - def __init__(self): - self._electrical_demand = None - self._losses_in_grid = None - - @property - def electrical_demand(self): - """ - Add explanation here - :return: add type of variable here - """ - return self._electrical_demand - - @property - def losses_in_grid(self): - """ - Add explanation here - :return: add type of variable here - """ - return self._losses_in_grid