Skip to content

Commit 81a74c8

Browse files
committed
v0.7.1: allow arbitrary structures in reprs
1 parent 6565f74 commit 81a74c8

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Title: 'Jupyter' Display Machinery
33
Description:
44
An interface to the rich display capabilities of 'Jupyter' front-ends (e.g. 'Jupyter Notebook') <https://jupyter.org>.
55
Designed to be used from a running 'IRkernel' session <https://irkernel.github.io>.
6-
Version: 0.6.0.9000
6+
Version: 0.6.1
77
Authors@R: c(
88
person('Thomas', 'Kluyver', role = c('aut', 'cph'), email = 'thomas@kluyver.me.uk'),
99
person('Philipp', 'Angerer', role = c('aut', 'cph', 'cre'), email = 'phil.angerer@gmail.com'),

R/display.r

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,6 @@ prepare_content <- function(isbinary, data = NULL, file = NULL) {
8585
if (is.null(file)) {
8686
if (isbinary) {
8787
if (!is.raw(data)) stop('Data needs to be a raw vector')
88-
} else {
89-
if (!is.character(data)) stop('Data needs to be a character vector')
9088
}
9189
data
9290
} else {

0 commit comments

Comments
 (0)