Skip to content

Commit b366556

Browse files
committed
Fix firefly
1 parent ad98675 commit b366556

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tutorials/euclid_access/Euclid_ERO.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,11 @@ We start by initializing the Firefly client.
624624
The following line will open a new `Firefly` GUI in a separate tab **inside** the Jupyter Notebook environment. The user can drag the tab onto the currently open tab to create a "split tab". This the user to see the code and images side-by-side.
625625

626626
```python
627-
fc = FireflyClient.make_lab_client()
627+
# Uncomment when using within Jupyter Lab with jupyter_firefly_extensions installed
628+
# fc = FireflyClient.make_lab_client()
629+
630+
# Uncomment for contexts other than the above
631+
fc = FireflyClient.make_client(url="https://irsa.ipac.caltech.edu/irsaviewer")
628632
```
629633

630634
In order to display in image or catalog in `Firefly`, it needs to be uploaded to the `Firefly` server. We do this here using the `upload_file()` function.

0 commit comments

Comments
 (0)