ruff: Fix PLW1508 Invalid type for environment variable default.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg 2023-03-23 13:22:09 -07:00 committed by Tim Abbott
parent b719227b04
commit 1db7f80f94
1 changed files with 1 additions and 1 deletions

View File

@ -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