Skip to content

Commit

Permalink
update print
Browse files Browse the repository at this point in the history
  • Loading branch information
gogonzo committed Dec 20, 2024
1 parent 671cd48 commit b26fe19
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion R/teal_data-show.R
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@ setMethod("show", signature = "teal_data", function(object) {
} else {
cat("\u2716", "unverified teal_data object\n")
}
rlang::env_print(teal.code::get_env(object))
methods::callNextMethod(object)
invisible(object)
})
2 changes: 1 addition & 1 deletion vignettes/teal-data.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ A `teal_data` is meant to be used for reproducibility purposes. The class inheri
- `teal_data` is a locked environment, and data modification is only possible through the `teal.code::eval_code()` and `within.qenv()` functions.
- It stores metadata about the code used to create the data (see [reproducibility](#reproducibility)).
- It supports slicing by `[`.
- Is immutable which means that each code evaluation does not modify the original `teal_data` environment directly.
- It is immutable which means that each code evaluation does not modify the original `teal_data` environment directly.
- It maintains information about relationships between datasets (see [Join Keys](#relational-data-models)).

## Quick Start
Expand Down

0 comments on commit b26fe19

Please sign in to comment.