This is an automated email from the ASF dual-hosted git repository.
hainenber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new 13c5a324027 fix(tests): correct stale TYPE_CHECKING import path in
base_data_loader (#41972)
13c5a324027 is described below
commit 13c5a3240274973db7bbc90f804a18e47526ec60
Author: Moussa Leblouba <[email protected]>
AuthorDate: Sun Jul 12 17:26:11 2026 +0400
fix(tests): correct stale TYPE_CHECKING import path in base_data_loader
(#41972)
Co-authored-by: Moussa Leblouba <[email protected]>
---
tests/example_data/data_loading/base_data_loader.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/example_data/data_loading/base_data_loader.py
b/tests/example_data/data_loading/base_data_loader.py
index 7d9dd57c58f..6ef3be9120a 100644
--- a/tests/example_data/data_loading/base_data_loader.py
+++ b/tests/example_data/data_loading/base_data_loader.py
@@ -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):