serge-sans-paille added inline comments.
================
Comment at: clang-tidy/tool/run-clang-tidy.py:51
+
+yaml_imported = True
+try:
----------------
Could be
```
try:
import yaml
except ImportError:
yaml = None
```
and later
```
if yaml:
...
```
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D59734/new/
https://reviews.llvm.org/D59734
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
