Skip to content

Commit 7539046

Browse files
committed
For AltDSS: adjust function filter
1 parent eb04e51 commit 7539046

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dss/_cffi_api_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def __init__(self, ctx, ffi, lib):
9797
# First, process all `ctx_*`` functions
9898
for name, value in vars(lib).items():
9999
is_ctx = name.startswith('ctx_')
100-
if not is_ctx and (not name.startswith('Batch_Create')):
100+
if not is_ctx and not name.startswith(('Batch_Create', 'Batch_Filter', )):
101101
continue
102102

103103
# Keep the basic management functions alone

0 commit comments

Comments
 (0)