Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
joergbuchwald committed Aug 23, 2024
1 parent 52874e9 commit b8c9113
Show file tree
Hide file tree
Showing 13 changed files with 12 additions and 17 deletions.
2 changes: 1 addition & 1 deletion ogs6py/classes/curves.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from lxml import etree as ET

from ogstools.ogs6py import build_tree
from ogs6py.classes import build_tree


class Curves(build_tree.BuildTree):
Expand Down
2 changes: 1 addition & 1 deletion ogs6py/classes/geo.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# pylint: disable=C0103, R0902, R0914, R0913
from lxml import etree as ET

from ogstools.ogs6py import build_tree
from ogs6py.classes import build_tree


class Geo(build_tree.BuildTree):
Expand Down
2 changes: 1 addition & 1 deletion ogs6py/classes/linsolvers.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from lxml import etree as ET

from ogstools.ogs6py import build_tree
from ogs6py.classes import build_tree


class LinSolvers(build_tree.BuildTree):
Expand Down
2 changes: 1 addition & 1 deletion ogs6py/classes/local_coordinate_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from lxml import etree as ET

from ogstools.ogs6py import build_tree
from ogs6py.classes import build_tree


class LocalCoordinateSystem(build_tree.BuildTree):
Expand Down
2 changes: 1 addition & 1 deletion ogs6py/classes/media.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from lxml import etree as ET

from ogstools.ogs6py import build_tree
from ogs6py.classes import build_tree


class Media(build_tree.BuildTree):
Expand Down
2 changes: 1 addition & 1 deletion ogs6py/classes/mesh.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from lxml import etree as ET

from ogstools.ogs6py import build_tree
from ogs6py.classes import build_tree


class Mesh(build_tree.BuildTree):
Expand Down
2 changes: 1 addition & 1 deletion ogs6py/classes/nonlinsolvers.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from lxml import etree as ET

from ogstools.ogs6py import build_tree
from ogs6py.classes import build_tree


class NonLinSolvers(build_tree.BuildTree):
Expand Down
2 changes: 1 addition & 1 deletion ogs6py/classes/parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from lxml import etree as ET

from ogstools.ogs6py import build_tree
from ogs6py.classes import build_tree


class Parameters(build_tree.BuildTree):
Expand Down
2 changes: 1 addition & 1 deletion ogs6py/classes/processes.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from lxml import etree as ET

from ogstools.ogs6py import build_tree
from ogs6py.classes import build_tree


class Processes(build_tree.BuildTree):
Expand Down
2 changes: 1 addition & 1 deletion ogs6py/classes/processvars.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from lxml import etree as ET

from ogstools.ogs6py import build_tree
from ogs6py.classes import build_tree


class ProcessVars(build_tree.BuildTree):
Expand Down
5 changes: 0 additions & 5 deletions ogs6py/classes/properties.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,6 @@
# pylint: disable=C0103, R0902, R0914, R0913
from __future__ import annotations

from typing import TYPE_CHECKING

if TYPE_CHECKING:
from ogstools.ogs6py.ogs import OGS

from collections.abc import Generator
from dataclasses import dataclass, field
from typing import Any
Expand Down
2 changes: 1 addition & 1 deletion ogs6py/classes/python_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# pylint: disable=C0103, R0902, R0914, R0913
from lxml import etree as ET

from ogstools.ogs6py import build_tree
from ogs6py.classes import build_tree


class PythonScript(build_tree.BuildTree):
Expand Down
2 changes: 1 addition & 1 deletion ogs6py/classes/timeloop.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from lxml import etree as ET

from ogstools.ogs6py import build_tree
from ogs6py.classes import build_tree


class TimeLoop(build_tree.BuildTree):
Expand Down

0 comments on commit b8c9113

Please sign in to comment.