Skip to content

Commit

Permalink
Add missing ")"
Browse files Browse the repository at this point in the history
Because Trevor can't copy-and-paste reliably.
  • Loading branch information
trevorhardy committed Feb 2, 2024
1 parent 6c95a5c commit 4172f01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions helics/capi.py
Original file line number Diff line number Diff line change
Expand Up @@ -1393,7 +1393,7 @@ def message_id(self, v):

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


class HelicsQueryBuffer(_HelicsCHandle):
Expand Down Expand Up @@ -2826,7 +2826,7 @@ class HelicsCallbackFederate(HelicsCombinationFederate):

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


class HelicsException(Exception):
Expand Down

0 comments on commit 4172f01

Please sign in to comment.