Skip to content

Commit 61f78c2

Browse files
committed
another attempt to fix docstring
1 parent 36a7369 commit 61f78c2

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

astroquery/heasarc/core.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -549,17 +549,17 @@ def query_by_column(self, catalog, params, *,
549549
A dictionary of column constraint parameters to include in the query.
550550
Each key-value pair will be translated into an ADQL condition.
551551
- For a range query, use a tuple of two values (min, max).
552-
e.g. ``{'flux': (1e-12, 1e-10)}`` translates to
553-
``flux BETWEEN 1e-12 AND 1e-10``.
552+
e.g. ``{'flux': (1e-12, 1e-10)}`` translates to
553+
``flux BETWEEN 1e-12 AND 1e-10``.
554554
- For list values, use a list of values.
555-
e.g. ``{'object_type': ['QSO', 'GALAXY']}`` translates to
556-
``object_type IN ('QSO', 'GALAXY')``.
555+
e.g. ``{'object_type': ['QSO', 'GALAXY']}`` translates to
556+
``object_type IN ('QSO', 'GALAXY')``.
557557
- For comparison queries, use a tuple of (operator, value),
558-
where operator is one of '=', '!=', '<', '>', '<=', '>='.
559-
e.g. ``{'magnitude': ('<', 15)}`` translates to ``magnitude < 15``.
558+
where operator is one of '=', '!=', '<', '>', '<=', '>='.
559+
e.g. ``{'magnitude': ('<', 15)}`` translates to ``magnitude < 15``.
560560
- For exact matches, use a single value (str, int, float).
561-
e.g. ``{'object_type': 'QSO'}`` translates to
562-
``object_type = 'QSO'``.
561+
e.g. ``{'object_type': 'QSO'}`` translates to
562+
``object_type = 'QSO'``.
563563
The keys should correspond to valid column names in the catalog.
564564
Use `list_columns` to see the available columns.
565565
get_query_payload : bool, optional

0 commit comments

Comments
 (0)