Skip to content

Commit

Permalink
Test change to Python3 version of super()
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorhardy committed Feb 2, 2024
1 parent bb8f737 commit 14c1e77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helics/capi.py
Original file line number Diff line number Diff line change
Expand Up @@ -1398,7 +1398,7 @@ def __init__(self, handle, cleanup=False):

class HelicsQueryBuffer(_HelicsCHandle):
def __init__(self, handle, cleanup=False):
super(HelicsQueryBuffer, self).__init__(handle, cleanup)
super().__init__(handle, cleanup)


class HelicsEndpoint(_HelicsCHandle):
Expand Down

0 comments on commit 14c1e77

Please sign in to comment.