Skip to content

Commit 1a63a15

Browse files
committed
BUG: fix minor internal inconsistency
1 parent d5a622b commit 1a63a15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

astroquery/ipac/irsa/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ def list_catalogs(self, *, full=False, filter=None, cache=False):
315315
filter : str or None
316316
If specified we only return catalogs with names containing the filter string.
317317
"""
318-
tap_tables = Irsa.query_tap("SELECT * FROM TAP_SCHEMA.tables").to_table()
318+
tap_tables = self.query_tap("SELECT * FROM TAP_SCHEMA.tables").to_table()
319319

320320
if filter:
321321
mask = [filter in name for name in tap_tables['table_name']]

0 commit comments

Comments
 (0)