Skip to content

Commit

Permalink
Delete unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
alihamdan committed Dec 2, 2024
1 parent d69d41d commit 3013bb3
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions roseau/load_flow_single/models/line_parameters.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
import logging
import re
from pathlib import Path
from typing import Literal, NoReturn, TypeAlias, TypeVar
from typing import Literal, NoReturn

import numpy as np
import pandas as pd
from typing_extensions import Self

from roseau.load_flow._compat import StrEnum
from roseau.load_flow.exceptions import RoseauLoadFlowException, RoseauLoadFlowExceptionCode
from roseau.load_flow.models import LineParameters as MultiLineParameters
from roseau.load_flow.typing import Complex, Float, Id, JsonDict
Expand All @@ -17,9 +16,6 @@
logger = logging.getLogger(__name__)


_StrEnumType: TypeAlias = TypeVar("_StrEnumType", bound=StrEnum)


class LineParameters(Identifiable, JsonMixin, CatalogueMixin[pd.DataFrame]):
"""Parameters that define electrical models of lines."""

Expand Down

0 comments on commit 3013bb3

Please sign in to comment.