7 lines
106 B
Python
7 lines
106 B
Python
from collections import abc
|
|
from typing import Any
|
|
|
|
def double(x: abc.Sequence) -> Any:
|
|
return x * 2
|
|
|