Skip to content

Commit

Permalink
typo: missing to self.
Browse files Browse the repository at this point in the history
  • Loading branch information
mtlam committed Jul 17, 2020
1 parent e23f1a9 commit 0fc4e85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pypulse/archive.py
Original file line number Diff line number Diff line change
Expand Up @@ -1110,12 +1110,12 @@ def getAxis(self, flag=None, edges=False, wcfreq=False, datfreq=True):

def getFrequencies(self, **kwargs):
"""Convenience function for getAxis"""
return getAxis('F', **kwargs)
return self.getAxis('F', **kwargs)
getFreqs = getFrequencies

def getTimes(self, **kwargs):
"""Convenience function for getAxis"""
return getAxis('T', **kwargs)
return self.getAxis('T', **kwargs)

#Assumes the shape of data is (t, f, b) (i.e. polarization scrunched)
def getPulse(self, t, f=None):
Expand Down

0 comments on commit 0fc4e85

Please sign in to comment.