aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorCyril SIX <cyril.six@kalray.eu>2019-06-20 17:13:02 +0200
committerCyril SIX <cyril.six@kalray.eu>2019-06-20 17:13:02 +0200
commit909fc0b55e396bb921901d3833f6941fd16b4bd1 (patch)
treefbbb0d2b74cbc2b6492f75b328da8fa07bd6c33d /test
parentfa0271962d23a06ae2456d88291409cb27f3076a (diff)
downloadcompcert-kvx-909fc0b55e396bb921901d3833f6941fd16b4bd1.tar.gz
compcert-kvx-909fc0b55e396bb921901d3833f6941fd16b4bd1.zip
Fixing invalid syntax error
Diffstat (limited to 'test')
-rwxr-xr-xtest/monniaux/gengraphs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/monniaux/gengraphs.py b/test/monniaux/gengraphs.py
index feb9f185..e7403df6 100755
--- a/test/monniaux/gengraphs.py
+++ b/test/monniaux/gengraphs.py
@@ -33,7 +33,7 @@ def extract_compiler(env: str) -> str:
return " ".join(words)
def extract_compilers(envs: List[str]) -> List[str]:
- compilers: List[str] = []
+ compilers = []
for env in envs:
compiler = extract_compiler(env)
if compiler not in compilers: