CompletionModelCodegen: Remove unused import
authorNico Weber <thakis@chromium.org>
Fri, 18 Sep 2020 20:24:54 +0000 (16:24 -0400)
committerNico Weber <thakis@chromium.org>
Fri, 18 Sep 2020 20:24:58 +0000 (16:24 -0400)
The unused import is 3.4+, so it also breaks py2.7 compat.
But this is easy to fix :)

clang-tools-extra/clangd/quality/CompletionModelCodegen.py

index 3fd3872..20bfccd 100644 (file)
@@ -9,7 +9,6 @@ The generated runtime provides an `Evaluate` function which can be used to score
 import argparse
 import json
 import struct
-from enum import Enum
 
 
 class CppClass: