Skip to content

Commit

Permalink
update deploy parameter defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
bcwu committed Jul 19, 2021
1 parent 9a33e41 commit e39146f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rsconnect_jupyter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ def post(self, action):
disable_tls_check = data["disable_tls_check"]
cadata = data.get("cadata", None)
extra_files = data.get("files", [])
hide_all_input = data.get("hide_all_input", None)
hide_tagged_input = data.get("hide_tagged_input", None)
hide_all_input = data.get("hide_all_input", False)
hide_tagged_input = data.get("hide_tagged_input", False)

model = self.contents_manager.get(path=nb_path)
if model["type"] != "notebook":
Expand Down

0 comments on commit e39146f

Please sign in to comment.