# How to hide output from a pluto cell

**URL:** https://discourse.julialang.org/t/how-to-hide-output-from-a-pluto-cell/90057
**Category:** Pluto
**Tags:** display
**Created:** [November 10, 2022, 3:42pm UTC](https://discourse.julialang.org/t/how-to-hide-output-from-a-pluto-cell/90057 "2022-11-10T15:42:56Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Xavier\_Gonzalez](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/xavier_gonzalez/32/36033_2.png) [@Xavier\_Gonzalez](https://discourse.julialang.org/u/Xavier_Gonzalez)
#### Post date: [November 10, 2022, 3:42pm UTC](https://discourse.julialang.org/t/how-to-hide-output-from-a-pluto-cell/90057/1 "2022-11-10T15:42:56Z")

</div>

I am using Pluto.jl

I am importing some dictionaries that have as entries fairly large tensors (100x100x100). The tensors are store as BSON files, so that code is

```julia
    output = BSON.load(path_to_file);

```

Just to make the notebook more readable, I would like the output NOT to be shown. I don’t need to see all of these large tensors. Plus the output has a ton of blank whitespace that makes scrolling much less user friendly.

For some reason I thought the semi-colon would do that job, but it doesn’t. I’ve tried searching for an answer, but all I’ve found is articles explaining that in pluto the output is above the cell, not below it.

Does anyone know a fix for my problem?

---

<div class="post-metadata">

### Author: ![stillyslalom](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/stillyslalom/32/45687_2.png) [@stillyslalom](https://discourse.julialang.org/u/stillyslalom)
#### Post date: [November 10, 2022, 3:45pm UTC](https://discourse.julialang.org/t/how-to-hide-output-from-a-pluto-cell/90057/2 "2022-11-10T15:45:16Z")

</div>

Strange that output isn’t being suppressed, but try

```julia
output = BSON.load(path_to_file); nothing

```

---

<div class="post-metadata">

### Author: ![Xavier\_Gonzalez](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/xavier_gonzalez/32/36033_2.png) [@Xavier\_Gonzalez](https://discourse.julialang.org/u/Xavier_Gonzalez)
#### Post date: [November 20, 2022, 10:04pm UTC](https://discourse.julialang.org/t/how-to-hide-output-from-a-pluto-cell/90057/3 "2022-11-20T22:04:49Z")

</div>

this worked perfectly,thank you!, but maybe @Pluto people could note that this keyword “nothing” has to be added?
