We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 814b7fd commit f666d4fCopy full SHA for f666d4f
src/fuzzylogic/functions.py
@@ -311,7 +311,7 @@ def S(low: Number, high: Number) -> Callable:
311
THIS FUNCTION ONLY CAN HAVE A NEGATIVE SLOPE -
312
USE THE R() FUNCTION FOR POSITIVE SLOPE.
313
"""
314
- assert low < high, f"{low} < {high} is not true."
+ assert low < high, f"{low} must be less than {high}."
315
316
def f(x: Number) -> float:
317
if x <= low:
0 commit comments