Closed Gabriel-p closed 8 years ago
The module functions/structure/get_king_prof.py has a bug in line 233:
functions/structure/get_king_prof.py
text2 = '{:.1f}' if coord == 'px' else '{:g}, {:g}'
where text2 is one input or two depending on the coordinates used. This should be:
text2
text2 = '{:.1f}' if coord == 'px' else '{:g}'
Closed here: https://github.com/asteca/ASteCA/commit/62ffe4dad93fd5291900c08aa05af9e1c1cee5f2
The module
functions/structure/get_king_prof.py
has a bug in line 233:where
text2
is one input or two depending on the coordinates used. This should be: