Skip to content

Commit 14f80df

Browse files
Amend redundant comment to break circular import
Signed-off-by: Daniel Zullo <[email protected]>
1 parent 995c766 commit 14f80df

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/frequenz/sdk/microgrid/component/_component.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import frequenz.api.microgrid.inverter_pb2 as inverter_pb
1414

1515
if TYPE_CHECKING:
16-
# Break circular import by enclosing these type hints in a `TYPE_CHECKING` block.
16+
# Break circular import
1717
from ...timeseries import Fuse
1818

1919

src/frequenz/sdk/timeseries/_fuse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from typing import TYPE_CHECKING
99

1010
if TYPE_CHECKING:
11-
# Break circular import by enclosing these type hints in a `TYPE_CHECKING` block.
11+
# Break circular import
1212
from . import Current
1313

1414

src/frequenz/sdk/timeseries/formula_engine/_formula_engine_pool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from ._resampled_formula_builder import ResampledFormulaBuilder
2020

2121
if TYPE_CHECKING:
22-
# Break circular import by enclosing these type hints in a `TYPE_CHECKING` block.
22+
# Break circular import
2323
from ..formula_engine import FormulaEngine, FormulaEngine3Phase
2424

2525

0 commit comments

Comments
 (0)