Skip to content

Commit 5b25fdb

Browse files
authored
Features: fix FEATURES object (#12407)
``` In [3]: dict(Feature.FEATURES) --------------------------------------------------------------------------- ValueError Traceback (most recent call last) Cell In[3], line 1 ----> 1 dict(Feature.FEATURES) ValueError: dictionary update sequence element #2 has length 4; 2 is required ``` The object got malformed in #12327
1 parent 6fd1054 commit 5b25fdb

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

readthedocs/projects/models.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2040,6 +2040,8 @@ def add_features(sender, **kwargs):
20402040
_(
20412041
"Build: Don't clean the build directory. Only for Enterprise users with dedicated builders."
20422042
),
2043+
),
2044+
(
20432045
BUILD_HEALTHCHECK,
20442046
_("Build: Use background cURL healthcheck."),
20452047
),

0 commit comments

Comments
 (0)