]> granicus.if.org Git - graphviz/commitdiff
fix a Python type signature
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 16 Apr 2021 00:29:30 +0000 (17:29 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 17 Apr 2021 23:49:01 +0000 (16:49 -0700)
Technically List[str] is the type of a list of strings, not [str].

rtest/gvtest.py

index 06ca30952cd9ca80087d5fe0702848e762e3a57a..6bad7543c62fbb05559f5b0ae10517f80b60514c 100644 (file)
@@ -46,8 +46,8 @@ def compile_c(src: Path, cflags: List[str] = [], link: List[str] = [],
 
     return dst
 
-def run_c(src: Path, args: [str] = [], input: str = '', cflags: List[str] = [],
-          link: List[str] = []) -> Tuple[int, str, str]:
+def run_c(src: Path, args: List[str] = [], input: str = '',
+          cflags: List[str] = [], link: List[str] = []) -> Tuple[int, str, str]:
     '''
     compile and run a C program
     '''