Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
malthe committed Dec 4, 2023
1 parent 1ae91ae commit 36cadb0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/chameleon/compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,8 @@ def indent(s):
context=__i18n_context,
target_language=target_language
)
target = str(target) if target is __converted \
target = str(target) \
if target is __converted \
else __converted
else:
target = render()""")
Expand Down Expand Up @@ -210,7 +211,8 @@ def func(target):
context=__i18n_context,
target_language=target_language
)
target = str(target) if target is __converted \
target = str(target) \
if target is __converted \
else __converted
else:
target = render()
Expand Down

0 comments on commit 36cadb0

Please sign in to comment.