From 909fc0b55e396bb921901d3833f6941fd16b4bd1 Mon Sep 17 00:00:00 2001 From: Cyril SIX Date: Thu, 20 Jun 2019 17:13:02 +0200 Subject: Fixing invalid syntax error --- test/monniaux/gengraphs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') 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: -- cgit