mirror of https://github.com/zulip/zulip.git
ruff: Fix PLW1508 Invalid type for environment variable default.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
b719227b04
commit
1db7f80f94
|
@ -165,7 +165,7 @@ if FAKE_LDAP_MODE:
|
|||
|
||||
THUMBNAIL_IMAGES = True
|
||||
|
||||
SEARCH_PILLS_ENABLED = bool(os.getenv("SEARCH_PILLS_ENABLED", False))
|
||||
SEARCH_PILLS_ENABLED = bool(os.getenv("SEARCH_PILLS_ENABLED"))
|
||||
|
||||
BILLING_ENABLED = True
|
||||
LANDING_PAGE_NAVBAR_MESSAGE: Optional[str] = None
|
||||
|
|
Loading…
Reference in New Issue