aboutsummaryrefslogtreecommitdiff
path: root/src/mlia/core/typing.py
blob: ea334c92f9575c946c165568cc9a04d8fb937858 (plain)
1
2
3
4
5
6
7
# SPDX-FileCopyrightText: Copyright 2022-2023, Arm Limited and/or its affiliates.
# SPDX-License-Identifier: Apache-2.0
"""Module for custom type hints."""
from typing import Literal


OutputFormat = Literal["plain_text", "json"]