Skip to content

Commit 24c7c7f

Browse files
committed
satisfy linter
1 parent ff09af4 commit 24c7c7f

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

R/appenders.R

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -235,22 +235,21 @@ appender_pushbullet <- function(...) {
235235
#' Send log messages to ntfy
236236
#' @param title notification title
237237
#' @param tags emoji (or general tag) for notification. See [ntfy::emoji]
238-
#' @param ... extra parameters passed to [ntfy::ntfy_send]
239-
#'
240-
#' @details Configure server and topic via environment variables. See
241-
#' [ntfy::ntfy_topic()] for details.
242-
#'
238+
#' @param ... extra parameters passed to [ntfy::ntfy_send] such as
239+
#' `priority`, `topic`, etc.
240+
#' @details Configure server and topic via environment variables. See
241+
#' [ntfy::ntfy_topic()] for details
243242
#' @export
244243
#' @note This functionality depends on the \pkg{ntfy} package.
245244
#' @family log_appenders
246245
#' @export
247-
appender_ntfy <- function(title = "{logger}",
246+
appender_ntfy <- function(title = "{logger}",
248247
tags = c("memo"),
249248
...) {
250249
fail_on_missing_package("ntfy")
251250
force(title)
252251
force(tags)
253-
252+
254253
structure(
255254
function(lines) {
256255
ntfy::ntfy_send(title = title, tags = tags, message = paste(lines, sep = "\n"), ...)

man/appender_ntfy.Rd

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)