diff options
author | Neil <nyamatongwe@gmail.com> | 2020-05-19 11:43:33 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2020-05-19 11:43:33 +1000 |
commit | 868780c1a7b664d0453c3921baed3ddfa5a2e4c3 (patch) | |
tree | a1d9593f0944026eaa5f45061dad8a3d2663ba3c | |
parent | b8969081bea4afb41ccdf03364758c1ecd0b1b4b (diff) | |
download | scintilla-mirror-868780c1a7b664d0453c3921baed3ddfa5a2e4c3.tar.gz |
Remove call to ScintillaData as result not used.
-rw-r--r-- | scripts/CheckMentioned.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/CheckMentioned.py b/scripts/CheckMentioned.py index c80fb2356..bcbbaa6c9 100644 --- a/scripts/CheckMentioned.py +++ b/scripts/CheckMentioned.py @@ -11,7 +11,6 @@ srcRoot = "../.." sys.path.append(srcRoot + "/scintilla/scripts") import Face -import ScintillaData uninteresting = { "SCINTILLA_H", "SCI_START", "SCI_LEXER_START", "SCI_OPTIONAL_START", @@ -104,7 +103,6 @@ def makeSig(params): pathIface = srcRoot + "/scintilla/include/Scintilla.iface" def retrieveFeatures(): - sci = ScintillaData.ScintillaData(srcRoot + "/scintilla/") face = Face.Face() face.ReadFromFile(pathIface) sciToFeature = {} |