Skip to content

Commit 1234502

Browse files
committed
Update end_to_end_test_utilities.py
1 parent 357d502 commit 1234502

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/scripts/end_to_end_test_utilities.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@
88
from dataclasses import dataclass, field
99
from typing import Optional
1010
import contextlib
11-
import tomllib
11+
12+
try:
13+
import tomllib
14+
except ImportError:
15+
import tomli as tomllib
1216

1317

1418
@dataclass

0 commit comments

Comments
 (0)