We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7dec2a5 commit 8cb883dCopy full SHA for 8cb883d
1 file changed
scripts/validate_examples.py
@@ -16,6 +16,9 @@
16
from playwright.sync_api import sync_playwright
17
18
import trackio
19
+import trackio.bucket_storage as bucket_storage
20
+import trackio.sqlite_storage as sqlite_storage
21
+import trackio.utils as utils
22
23
if hasattr(sys.stdout, "reconfigure"):
24
try:
@@ -88,10 +91,6 @@ class ExampleOutcome:
88
91
89
92
90
93
def apply_trackio_dir(path: Path) -> None:
- import trackio.bucket_storage as bucket_storage
- import trackio.sqlite_storage as sqlite_storage
- import trackio.utils as utils
94
-
95
path = path.resolve()
96
path.mkdir(parents=True, exist_ok=True)
97
utils.TRACKIO_DIR = path
0 commit comments