Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f7976b8

Browse files
committedAug 2, 2022
disable astroquery cache
1 parent 0b9632b commit f7976b8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

‎astromon/cross_match.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,8 @@ def get_vizier(pos, catalog, cat_identifier, name_cols, columns,
7676
f'_RA(J2000,{pos.obstime.frac_year:8.3f})',
7777
f'_DE(J2000,{pos.obstime.frac_year:8.3f})'
7878
],
79-
cache=False,
8079
)
81-
vizier_result = vizier.query_region(pos, radius=radius, catalog=cat_identifier)
80+
vizier_result = vizier.query_region(pos, radius=radius, catalog=cat_identifier, cache=False)
8281
vizier_result = [r for r in vizier_result]
8382
else:
8483
vizier_result = [

0 commit comments

Comments
 (0)
Please sign in to comment.