From dfb5df994982aa610ea8eb4b91ac6f2c5a8e25da Mon Sep 17 00:00:00 2001 From: Maximiliano Osorio Date: Thu, 1 Oct 2020 12:33:28 -0700 Subject: [PATCH] add missing import for List --- docs/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.rst b/docs/index.rst index 4a5ad8f..f22a948 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -62,7 +62,7 @@ The basic input data types can be combined with the List and Optional annotation annotation: .. code-block:: python - + from typing import List file_inputs: List[CWLFilePathInput] = ['data1.txt', 'data2.txt', 'data3.txt'] example: Optional[CWLStringInput] = None