Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
tbittar committed Sep 18, 2024
1 parent 9c0904b commit bf30c8f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/unittests/expressions/test_linearization.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
from unittest.mock import Mock

import pytest
from pydantic._internal._validators import pattern_bytes_validator
from unittests.expressions.test_expressions import StructureProvider

from andromede.expression import ExpressionNode, LiteralNode, literal, var
from andromede.expression.expression import (
ComponentVariableNode,
NoScenarioIndex,
ProblemVariableNode,
TimeShift,
comp_param,
comp_var,
Expand All @@ -22,6 +19,8 @@
from andromede.simulation.linear_expression import LinearExpression, Term
from andromede.simulation.linearize import ParameterGetter, linearize_expression

from .test_expressions import StructureProvider

P = comp_param("c", "p")
X = comp_var("c", "x")
Y = comp_var("c", "y")
Expand Down

0 comments on commit bf30c8f

Please sign in to comment.