We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4438c56 commit 3a6ac7aCopy full SHA for 3a6ac7a
dss/pm/dsspm_capi.py
@@ -334,6 +334,9 @@ def kvar(self, Value):
334
class ICapControls(FrozenClass):
335
_isfrozen = freeze
336
337
+ def Reset(self):
338
+ lib.CapControls_Reset()
339
+
340
@property
341
def AllNames(self):
342
'''Array of strings containing all RegControl names'''
tests/validate.py
@@ -447,7 +447,7 @@ def validate_Reclosers(self):
447
count = 0
448
while nA != 0:
449
count += 1
450
- for field in 'RecloseIntervals,'.split(','):
+ for field in 'RecloseIntervals'.split(','):
451
fA = getattr(A, field)
452
fB = getattr(B, field)
453
fA = np.array(fA, dtype=fB.dtype)
0 commit comments