Skip to content

Commit

Permalink
Fix angle name
Browse files Browse the repository at this point in the history
  • Loading branch information
matteobachetti committed Mar 19, 2024
1 parent c842c2c commit e62e07a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion basie/valid_angles.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def __new__(cls, angle, unit=u.deg, wrap_angle=360 * u.deg, **kwargs):
final_angle = 0.
for i, a in enumerate(angle[:3]):
final_angle += a * 60**(-i)

angle = final_angle
was_tuple = True
self = Angle.__new__(cls, angle, unit=unit, **kwargs)
self.original_unit = unit
Expand Down

0 comments on commit e62e07a

Please sign in to comment.