diff --git a/blueprintcompiler/formatter.py b/blueprintcompiler/formatter.py index 226e5e1..6753767 100644 --- a/blueprintcompiler/formatter.py +++ b/blueprintcompiler/formatter.py @@ -74,9 +74,8 @@ class Format: last_not_whitespace = item - else: - if tokenized_str == tokenized_str.strip(): - tokenized_str += " " + elif tokenized_str == tokenized_str.strip(): + tokenized_str += " " print(tokenized_str) # TODO: Remove this when the MR is ready to be merged