From cdb56e06d1985888623e2eefc2232010bd281398 Mon Sep 17 00:00:00 2001 From: DivadNojnarg Date: Tue, 3 Oct 2023 17:19:15 +0200 Subject: [PATCH] lint ... --- R/block.R | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/R/block.R b/R/block.R index cb5f87ae..51d6b5da 100644 --- a/R/block.R +++ b/R/block.R @@ -287,9 +287,9 @@ select_block <- function(data, ...) { #' @import ggplot2 #' @export new_plot_block <- function( - data, - plot_opts = list(colors = c("blue", "red")), - ... + data, + plot_opts = list(colors = c("blue", "red")), + ... ) { # For plot blocks, fields will create input to style the plot ... all_cols <- function(data) colnames(data) @@ -319,7 +319,7 @@ new_plot_block <- function( #' @rdname new_block #' @export - plot_block <- function(data, ...) { +plot_block <- function(data, ...) { initialize_block(new_plot_block(data, ...), data) }