tools/check_api_source_without_core_ops.py (#25671)

fix_copy_if_different
Leo Chen 5 years ago committed by GitHub
parent a1350744eb
commit 2f95e66313
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -40,7 +40,7 @@ diffs = []
for each_diff in result:
if each_diff[0] == '+':
api_name = each_diff.split(' ')[1].strip()
if api_name in api_without_ops:
if api_name in api_without_ops and api_name.find('sequence') == -1:
error = True
diffs += [api_name]

Loading…
Cancel
Save