Skip to content

Commit e48867f

Browse files
committed
fix help handler
1 parent c090f84 commit e48867f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

R/help.R

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ register_tf_help_handler <- function() {
99
help_url <- paste0("https://www.tensorflow.org/versions/r",
1010
version[1], ".", version[2], "/api_docs/python/")
1111

12+
# upstream TF is missing public docs for later version
13+
# https://github.com/tensorflow/tensorflow/issues/89084
14+
help_url <- "https://www.tensorflow.org/api_docs/python/"
15+
1216
# some adjustments
1317
name <- sub("^tensorflow", "tf", name)
1418
name <- sub("python.client.session.", "", name, fixed = TRUE)

0 commit comments

Comments
 (0)