Closed
Description
How could the content be improved?
For examples:
query3_base = """SELECT
TOP 10
{columns}
FROM gaiadr2.gaia_source
WHERE parallax < 1
AND bp_rp BETWEEN -0.75 AND 2
"""
query3 = query3_base.format(columns)
Can be combined into the single statement:
query3 = f"""SELECT
TOP 10
{columns}
FROM gaiadr2.gaia_source
WHERE parallax < 1
AND bp_rp BETWEEN -0.75 AND 2
"""
And columns will automatically be filled in
Which part of the content does your suggestion apply to?
No response
Metadata
Metadata
Assignees
Labels
No labels