Skip to content

Commit

Permalink
Temp
Browse files Browse the repository at this point in the history
  • Loading branch information
Xen0Xys committed May 13, 2024
1 parent f9ee0e4 commit 66e3163
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/ipyaladin/aladin.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,13 @@
from astropy.table import Table
from astropy.coordinates import SkyCoord, Angle
import traitlets
from regions import CircleSkyRegion, EllipseSkyRegion, LineSkyRegion

try:
from regions import CircleSkyRegion, EllipseSkyRegion, LineSkyRegion
except ImportError:
CircleSkyRegion = None
EllipseSkyRegion = None
LineSkyRegion = None
from traitlets import (
Float,
Int,
Expand Down

0 comments on commit 66e3163

Please sign in to comment.