Skip to content

Commit

Permalink
add explicit imports for R6
Browse files Browse the repository at this point in the history
  • Loading branch information
calderonsamuel committed Dec 13, 2023
1 parent c8a8cb2 commit 4b5bdd7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
11 changes: 11 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,14 @@ export(SSEparser)
export(parse_sse)
importFrom(R6,R6Class)
importFrom(magrittr,"%>%")
importFrom(purrr,compact)
importFrom(purrr,discard)
importFrom(purrr,map)
importFrom(purrr,pluck)
importFrom(purrr,reduce)
importFrom(rlang,is_empty)
importFrom(stringr,str_detect)
importFrom(stringr,str_split)
importFrom(stringr,str_split_1)
importFrom(stringr,str_starts)
importFrom(stringr,str_trim)
3 changes: 3 additions & 0 deletions R/SSEParser.R
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@
#' @param parsed_event Event to append to the `events` field.
#'
#' @importFrom R6 R6Class
#' @importFrom rlang is_empty
#' @importFrom stringr str_split str_starts str_detect str_split_1 str_trim
#' @importFrom purrr pluck map discard reduce compact
#'
#' @export
#'
Expand Down

0 comments on commit 4b5bdd7

Please sign in to comment.