diff options
author | Neil <nyamatongwe@gmail.com> | 2021-05-06 14:20:14 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-05-06 14:20:14 +1000 |
commit | 43e81343caba072317c0141ef30fc75b3cedab0f (patch) | |
tree | 65452b2c82acede81e173b4538ade9da9a89e277 /scripts/Dependencies.py | |
parent | 4c8fd05007555bca62f5b4647395a8669f9f4e78 (diff) | |
download | scintilla-mirror-43e81343caba072317c0141ef30fc75b3cedab0f.tar.gz |
Remove dead code and imports as found by Vulture.
https://github.com/jendrikseipp/vulture
Diffstat (limited to 'scripts/Dependencies.py')
-rw-r--r-- | scripts/Dependencies.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/Dependencies.py b/scripts/Dependencies.py index c9f85db02..135c57ac8 100644 --- a/scripts/Dependencies.py +++ b/scripts/Dependencies.py @@ -111,7 +111,6 @@ def ExtractDependencies(input): for line in input: headersLine = line.startswith(" ") or line.startswith("\t") line = line.strip() - isContinued = line.endswith("\\") line = line.rstrip("\\ ") fileNames = line.strip().split(" ") if not headersLine: |