mirror of
https://github.com/zulip/zulip.git
synced 2025-11-17 20:41:46 +00:00
Removed unused to_non_negative_float() function.
This commit is contained in:
@@ -477,13 +477,6 @@ def to_non_negative_int(x):
|
|||||||
raise ValueError("argument is negative")
|
raise ValueError("argument is negative")
|
||||||
return x
|
return x
|
||||||
|
|
||||||
def to_non_negative_float(x):
|
|
||||||
# type: (float) -> float
|
|
||||||
x = float(x)
|
|
||||||
if x < 0:
|
|
||||||
raise ValueError("argument is negative")
|
|
||||||
return x
|
|
||||||
|
|
||||||
def flexible_boolean(boolean):
|
def flexible_boolean(boolean):
|
||||||
# type: (text_type) -> bool
|
# type: (text_type) -> bool
|
||||||
"""Returns True for any of "1", "true", or "True". Returns False otherwise."""
|
"""Returns True for any of "1", "true", or "True". Returns False otherwise."""
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ from zerver.lib.str_utils import force_bytes
|
|||||||
|
|
||||||
from zerver.decorator import authenticated_api_view, authenticated_json_post_view, \
|
from zerver.decorator import authenticated_api_view, authenticated_json_post_view, \
|
||||||
has_request_variables, REQ, JsonableError, \
|
has_request_variables, REQ, JsonableError, \
|
||||||
to_non_negative_int, to_non_negative_float
|
to_non_negative_int
|
||||||
from django.utils.html import escape as escape_html
|
from django.utils.html import escape as escape_html
|
||||||
from zerver.lib import bugdown
|
from zerver.lib import bugdown
|
||||||
from zerver.lib.actions import recipient_for_emails, do_update_message_flags, \
|
from zerver.lib.actions import recipient_for_emails, do_update_message_flags, \
|
||||||
|
|||||||
Reference in New Issue
Block a user