aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/GenerateCaseConvert.py
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2021-05-06 14:20:14 +1000
committerNeil <nyamatongwe@gmail.com>2021-05-06 14:20:14 +1000
commit43e81343caba072317c0141ef30fc75b3cedab0f (patch)
tree65452b2c82acede81e173b4538ade9da9a89e277 /scripts/GenerateCaseConvert.py
parent4c8fd05007555bca62f5b4647395a8669f9f4e78 (diff)
downloadscintilla-mirror-43e81343caba072317c0141ef30fc75b3cedab0f.tar.gz
Remove dead code and imports as found by Vulture.
https://github.com/jendrikseipp/vulture
Diffstat (limited to 'scripts/GenerateCaseConvert.py')
-rw-r--r--scripts/GenerateCaseConvert.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/GenerateCaseConvert.py b/scripts/GenerateCaseConvert.py
index 7a0f473f7..3c0193ecb 100644
--- a/scripts/GenerateCaseConvert.py
+++ b/scripts/GenerateCaseConvert.py
@@ -99,7 +99,7 @@ def groupRanges(symmetrics):
rangeCoverage = list(flatten([range(r[0], r[0]+r[2]*r[3], r[3]) for r in rangeGroups]))
- nonRanges = [(l, u) for l, u, d in symmetrics if l not in rangeCoverage]
+ nonRanges = [(l, u) for l, u, _d in symmetrics if l not in rangeCoverage]
return rangeGroups, nonRanges