diff --git a/flask/helpers.py b/flask/helpers.py index 1bd4ad6e..acb382ce 100644 --- a/flask/helpers.py +++ b/flask/helpers.py @@ -972,4 +972,4 @@ def is_ascii(string): :returns: True if string is fully ASCII encoded, False if not :rtype: boolean """ - return all(ord(char) < 128 for char in string): + return all(ord(char) < 128 for char in string);