Skip to content

Commit

Permalink
Fix typo in ldms.pyx LdmsAddr.as_tuple()
Browse files Browse the repository at this point in the history
  • Loading branch information
narategithub authored and tom95858 committed Jul 12, 2024
1 parent d5fe747 commit 39575a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ldms/python/ldms.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -3785,7 +3785,7 @@ cdef class LdmsAddr(object):
raise RuntimeError(f"Unsupported address family: {sa.sa_family}")

def as_tuple(self):
return tuple( self.family, self.port, self.addr )
return ( self.family, self.port, self.addr )

def __iter__(self):
yield self.family
Expand Down

0 comments on commit 39575a0

Please sign in to comment.