Skip to content

Commit

Permalink
Removed stale import of oeli::check_date().
Browse files Browse the repository at this point in the history
  • Loading branch information
loelschlaeger committed Aug 28, 2024
1 parent 88ce636 commit 23dc162
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: fHMM
Type: Package
Title: Fitting Hidden Markov Models to Financial Data
Version: 1.4.0
Version: 1.4.1
Authors@R: c(
person(given = "Lennart",
family = "Oelschl\U00E4ger",
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# fHMM 1.4.1

* Removed stale import of `oeli::check_date()`.

# fHMM 1.4.0

* Fixed a bug around the `period` control (#93, thanks to @dongsen86).
Expand Down
2 changes: 1 addition & 1 deletion R/read_data.R
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ read_data <- function(controls) {
for (i in 1:ifelse(controls[["hierarchy"]], 2, 1)) {
if (!is.na(date_column[i])) {
data_raw[[i]][[date_column[i]]] <- as.character(
oeli::check_date(data_raw[[i]][[date_column[i]]])
check_date(data_raw[[i]][[date_column[i]]])
)
}
}
Expand Down

0 comments on commit 23dc162

Please sign in to comment.