You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: endblock falsely reported as uncovered when on its own line (issue #74)
In parent templates, a TEXT token inside a {% block %} can end with a
whitespace-only fragment before {% endblock %} with no newline terminator.
That fragment is not an executable line but was incorrectly added to
source_lines, causing {% endblock %} to appear as an uncovered line.
Skip the trailing fragment when inside a block (inblock=True).
0 commit comments