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 20:26:11 +07:00
committed by GitHub
co-authored by Moussa Leblouba
parent 958d1ab256
commit 13c5a32402
@@ -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):