Skip to content
Snippets Groups Projects
Commit 787a378b authored by W. Trevor King's avatar W. Trevor King
Browse files

tools: Add trailing newlines to files that were missing them

This avoids things like:

  ~$ cat tools/validation_helpers.py
  ...
          return self.is_block(ast_node) and has_heading~$

with your next prompt way over to the right ;).
parent 50aa8c1d
Branches
Tags
No related merge requests found
......@@ -23,4 +23,4 @@ hook_out <- function(x, options) {
}
knit_hooks$set(source = hook_in, output = hook_out, warning = hook_out,
error = hook_out, message = hook_out)
\ No newline at end of file
error = hook_out, message = hook_out)
......@@ -239,4 +239,4 @@ class CommonMarkHelper(object):
else:
has_heading = False
return self.is_block(ast_node) and has_heading
\ No newline at end of file
return self.is_block(ast_node) and has_heading
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment