fix(tests): correct stale TYPE_CHECKING import path in base_data_loader (#41972)

Co-authored-by: Moussa Leblouba <mlablouba@gmail.com>
This commit is contained in:
Moussa Leblouba
2026-07-12 17:26:11 +04:00
committed by GitHub
parent 958d1ab256
commit 13c5a32402

View File

@@ -20,7 +20,7 @@ from abc import ABC, abstractmethod
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from tests.common.example_data.data_loading.data_definitions.types import Table
from tests.example_data.data_loading.data_definitions.types import Table
class DataLoader(ABC):