i missed some refs

This commit is contained in:
Benedikt Bartscher 2024-10-28 21:09:11 +01:00
parent 7cdd6f24b8
commit 73a80a6416
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ def _httpx_verify_kwarg() -> bool:
Returns: Returns:
True if SSL verification is enabled, False otherwise True if SSL verification is enabled, False otherwise
""" """
return not environment.SSL_NO_VERIFY return not environment.SSL_NO_VERIFY.get
def get(url: str, **kwargs) -> httpx.Response: def get(url: str, **kwargs) -> httpx.Response:

View File

@ -95,7 +95,7 @@ def _raise_on_missing_project_hash() -> bool:
False when compilation should be skipped (i.e. no .web directory is required). False when compilation should be skipped (i.e. no .web directory is required).
Otherwise return True. Otherwise return True.
""" """
return not environment.REFLEX_SKIP_COMPILE return not environment.REFLEX_SKIP_COMPILE.get
def _prepare_event(event: str, **kwargs) -> dict: def _prepare_event(event: str, **kwargs) -> dict: