Skip to content

Commit

Permalink
Fix arithmetic operator spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
cmsaunders committed Sep 11, 2023
1 parent db177d1 commit 55816a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/pipe/tasks/functors.py
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ def __init__(self, **kwargs):
def _func(self, df):
# Must not modify original column in case that column is used by
# another functor.
output = df[self.col] * (180 / np.pi)**2 if self._radians else df[self.col]
output = df[self.col]*(180/np.pi)**2 if self._radians else df[self.col]
return output


Expand Down

0 comments on commit 55816a0

Please sign in to comment.