Skip to content

Commit fb83f90

Browse files
committed
Turned on trim_blocks and lstrip_blocks by default
1 parent 5dbaa6b commit fb83f90

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_templateengine.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -349,8 +349,8 @@ def _create_template_function( # pylint: disable=,too-many-locals,too-many-bran
349349
template: str,
350350
language: str = Language.HTML,
351351
*,
352-
trim_blocks: bool = False,
353-
lstrip_blocks: bool = False,
352+
trim_blocks: bool = True,
353+
lstrip_blocks: bool = True,
354354
function_name: str = "_",
355355
context_name: str = "context",
356356
dry_run: bool = False,

0 commit comments

Comments
 (0)