Skip to content

Commit

Permalink
Comment out templates
Browse files Browse the repository at this point in the history
  • Loading branch information
ahuang11 authored Sep 16, 2024
1 parent d4f7d68 commit 3e91687
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/how_to/best_practices/dev_experience.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class ExampleApp(pn.viewable.Viewer):
sidebar=[...],
)
ExampleApp().servable(); # semi-colon to suppress output in notebook
# ExampleApp().servable()
```

### Okay
Expand All @@ -83,7 +83,7 @@ class ExampleApp(param.Parameterized):
sidebar=[...],
)
ExampleApp().view().servable(); # semi-colon to suppress output in notebook
# ExampleApp().view().servable()
```

## Build widgets from parameters
Expand Down

0 comments on commit 3e91687

Please sign in to comment.