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.
2 parents b8ecff2 + 4296720 commit 3b868e1Copy full SHA for 3b868e1
hack/verify-flags-underscore.py
@@ -69,9 +69,8 @@ def get_all_files(rootdir):
69
70
for name in files:
71
pathname = os.path.join(root, name)
72
- if is_binary(pathname):
73
- continue
74
- all_files.append(pathname)
+ if not is_binary(pathname):
+ all_files.append(pathname)
75
return all_files
76
77
# Collects all the flags used in golang files and verifies the flags do
0 commit comments