Source code for VeraGridEngine.IO.base.base_circuit

# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
# SPDX-License-Identifier: MPL-2.0

[docs] class BaseCircuit: def __init__(self): pass
[docs] def get_class_properties(self): return list()
[docs] def get_objects_list(self, elm_type): return getattr(self, elm_type)