From 787a378bb94187c459e723c4e627026421609471 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sat, 4 Apr 2015 12:39:30 -0700 Subject: [PATCH] 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 ;). --- tools/chunk-options.R | 2 +- tools/validation_helpers.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/chunk-options.R b/tools/chunk-options.R index 4856ca82f6..0411805a40 100644 --- a/tools/chunk-options.R +++ b/tools/chunk-options.R @@ -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) diff --git a/tools/validation_helpers.py b/tools/validation_helpers.py index ed383c1ad0..b6d9982feb 100644 --- a/tools/validation_helpers.py +++ b/tools/validation_helpers.py @@ -239,4 +239,4 @@ def is_callout(self, ast_node): 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