Skip to content

Commit

Permalink
fix clean signature
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben-Sacks committed Oct 31, 2024
1 parent b3330e7 commit 90835d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/clean_dyads.R
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#' @importFrom tidyr separate_rows
#' @export clean_dyads

clean_dyads <- function(read_ts_df, lemmatize=TRUE) {
clean_dyads <- function(read_ts_df, lemmatize=TRUE, stop_words_df = "default") {
default <- TRUE
# if not default and not proper file path (aside from default), throw an error
if (class(stop_words_df) != "character" | (!grepl(".csv", stop_words_df) & stop_words_df != "default")) {
Expand Down

0 comments on commit 90835d0

Please sign in to comment.