Skip to content

Commit

Permalink
Merge pull request #255 from sot/f-string
Browse files Browse the repository at this point in the history
Fix missing f in f-string
  • Loading branch information
taldcroft committed Jan 30, 2019
1 parent 13558a0 commit 50853a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proseco/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -840,7 +840,7 @@ def from_agasc(cls, att, date=None, radius=1.2, logger=None):

logger = StarsTable.get_logger(logger)
logger(f'Got {len(stars)} stars from AGASC at '
'ra={q_att.ra:.5f} dec={q_att.dec:.4f}',
f'ra={q_att.ra:.5f} dec={q_att.dec:.4f}',
level=1)

return stars
Expand Down

0 comments on commit 50853a0

Please sign in to comment.