Skip to content

Commit e9fce55

Browse files
committed
build: Don't require file existence
1 parent b51b5e2 commit e9fce55

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# ruff: noqa: TID252
2-
from .build_feature_flags import BUILD_FEATURE_FLAGS
2+
try:
3+
from .build_feature_flags import BUILD_FEATURE_FLAGS
4+
except ImportError:
5+
BUILD_FEATURE_FLAGS = ""
36

47
__all__ = ["BUILD_FEATURE_FLAGS"]

0 commit comments

Comments
 (0)