Arnaud P
Arnaud P

Reputation: 12627

Python type hint for Sized, Iterable and Container

What type hint should I use in Python 3 to describe an argument that I will use in these 3 ways:

Upvotes: 7

Views: 1812

Answers (1)

Arnaud P
Arnaud P

Reputation: 12627

You may use collections.abc.Collection

from collections.abc import Collection

def fn(arg: Collection[int]):
    pass

Upvotes: 4

Related Questions