From 8c1bdce2fb648c77d3fa82ec5660668985b19bfa Mon Sep 17 00:00:00 2001 From: Xen0Xys Date: Tue, 7 May 2024 08:27:47 +0200 Subject: [PATCH] :memo: Fix documentation --- src/ipyaladin/aladin.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/ipyaladin/aladin.py b/src/ipyaladin/aladin.py index 330ea84f..0386f215 100644 --- a/src/ipyaladin/aladin.py +++ b/src/ipyaladin/aladin.py @@ -150,7 +150,7 @@ def fov(self, fov: Union[float, Angle]) -> None: def target(self) -> SkyCoord: """The target of the Aladin Lite widget. - It can be set with either a string of an `~astropy.coordinates.SkyCoord` object. + It can be set with either a string or an `~astropy.coordinates.SkyCoord` object. Returns ------- @@ -327,8 +327,6 @@ def add_table(self, table: Union[QTable, Table], **table_options: any) -> None: And the table should appear in the output of Cell 1! """ - # this library must be installed, and is used in votable operations - # http://www.astropy.org/ import io table_bytes = io.BytesIO() @@ -356,9 +354,6 @@ def add_overlay_from_stcs(self, stc_string: str, **overlay_options: any) -> None } ) - # Note: the print() options end='\r'allow us to override the previous prints, - # thus only the last message will be displayed at the screen - def get_JPEG_thumbnail(self) -> None: """Create a popup window with the current Aladin view.""" self.send({"event_name": "get_JPG_thumbnail"})