Skip to content

Commit

Permalink
fix: wrong import
Browse files Browse the repository at this point in the history
  • Loading branch information
lars-reimann committed Jan 15, 2025
1 parent 1a0ae77 commit 1103dc2
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from typing import Any

import pytest
from helpers import assert_cell_operation_works

from safeds.data.tabular.typing import ColumnType
from tests.helpers import assert_cell_operation_works


@pytest.mark.parametrize(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from typing import Any

import pytest
from helpers import assert_cell_operation_works

from safeds.data.tabular.containers import Cell
from tests.helpers import assert_cell_operation_works


@pytest.mark.parametrize(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from datetime import date

import pytest
from helpers import assert_cell_operation_works
from tests.helpers import assert_cell_operation_works

from safeds._typing import _ConvertibleToIntCell
from safeds.data.tabular.containers import Cell
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from datetime import datetime

import pytest
from helpers import assert_cell_operation_works

from safeds._typing import _ConvertibleToIntCell
from safeds.data.tabular.containers import Cell
from tests.helpers import assert_cell_operation_works


@pytest.mark.parametrize(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from datetime import timedelta

import pytest
from helpers import assert_cell_operation_works

from safeds._typing import _ConvertibleToIntCell
from safeds.data.tabular.containers import Cell
from tests.helpers import assert_cell_operation_works


@pytest.mark.parametrize(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from datetime import time

import pytest
from helpers import assert_cell_operation_works

from safeds._typing import _ConvertibleToIntCell
from safeds.data.tabular.containers import Cell
from tests.helpers import assert_cell_operation_works


@pytest.mark.parametrize(
Expand Down

0 comments on commit 1103dc2

Please sign in to comment.