"""Custom type hints.""" from typing import Collection, NewType Base64String = str S3URI = str Email = str Emails = Collection[Email] OrchLabelId = int # Custom type hint for SQL queries SqlString = NewType("SqlString", str)