From 60db1e81c075b03487626599555508ebb3b1d471 Mon Sep 17 00:00:00 2001 From: Aadil Latif Date: Fri, 27 Feb 2026 12:26:34 -0700 Subject: [PATCH] removed print statements --- src/gdm/distribution/distribution_system.py | 1 - src/gdm/distribution/model_reduction/reducer.py | 1 - 2 files changed, 2 deletions(-) diff --git a/src/gdm/distribution/distribution_system.py b/src/gdm/distribution/distribution_system.py index 6501da8e..e2dd9aa6 100644 --- a/src/gdm/distribution/distribution_system.py +++ b/src/gdm/distribution/distribution_system.py @@ -470,7 +470,6 @@ def find_switch_buses_in_cycle(self, cycle: list[str]) -> list[str]: bus_1 = cycle[i] bus_2 = cycle[(i + 1) % len(cycle)] edge_data = self.get_undirected_graph().get_edge_data(bus_1, bus_2) - print(bus_1, bus_2, edge_data) if edge_data: for key, data in edge_data.items(): if issubclass(data.get("type"), MatrixImpedanceSwitch): diff --git a/src/gdm/distribution/model_reduction/reducer.py b/src/gdm/distribution/model_reduction/reducer.py index d1ac55c3..2f53a62e 100644 --- a/src/gdm/distribution/model_reduction/reducer.py +++ b/src/gdm/distribution/model_reduction/reducer.py @@ -112,7 +112,6 @@ def _reduce_system( model_type=model_type, split_phase_mapping=split_phase_mapping, ) - # print(model_type.__name__, agg_component) reduced_system.add_component(agg_component) agg_comp = reduced_system.get_component(model_type, agg_component.name) if agg_timeseries: