13 lines
125 B
Python
13 lines
125 B
Python
from typing import List
|
|
|
|
|
|
def f(x: List[str]) -> None:
|
|
...
|
|
|
|
|
|
import typing
|
|
|
|
|
|
def f(x: typing.List[str]) -> None:
|
|
...
|