From 01a826c88b3d0affb1fc84e05da6591d771803fa Mon Sep 17 00:00:00 2001 From: MARCHAND MANON Date: Wed, 21 Feb 2024 17:19:50 +0100 Subject: [PATCH] refactor: no need for basevoquery in deprecated simbad --- astroquery/simbad/deprecated_core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/astroquery/simbad/deprecated_core.py b/astroquery/simbad/deprecated_core.py index 11ceca11c8..96a2a4ad67 100644 --- a/astroquery/simbad/deprecated_core.py +++ b/astroquery/simbad/deprecated_core.py @@ -22,7 +22,7 @@ from astropy.table import Table import astropy.io.votable as votable -from astroquery.query import BaseQuery, BaseVOQuery +from astroquery.query import BaseQuery from astroquery.utils import commons, async_to_sync from astroquery.exceptions import TableParseError, LargeQueryWarning, BlankResponseWarning @@ -283,7 +283,7 @@ def _request(self, *args, **kwargs): @async_to_sync -class DeprecatedSimbadClass(BaseVOQuery, DeprecatedSimbadBaseQuery): +class DeprecatedSimbadClass(DeprecatedSimbadBaseQuery): """ The class for querying the Simbad web service.