Skip to content

Commit

Permalink
fix: print.keys used to be FALSE by default
Browse files Browse the repository at this point in the history
  • Loading branch information
gisler committed Nov 27, 2024
1 parent df2aaa3 commit 5f44884
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/ClassDTSg.R
Original file line number Diff line number Diff line change
Expand Up @@ -999,7 +999,7 @@ DTSg <- R6Class(

print = function() {
cat( "Values:\n")
print(private$.values, nrows = 11L, class = TRUE)
print(private$.values, nrows = 11L, class = TRUE, print.keys = FALSE)
cat( "\n")
if (private$.ID != "") {
cat("ID: ", private$.ID , "\n", sep = "")
Expand Down

0 comments on commit 5f44884

Please sign in to comment.