mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 10:44:24 +00:00
All checks were successful
Read Version from pyproject.toml / read-version (push) Successful in 14s
Author: Krrish Dholakia <krrishdholakia@gmail.com>
Date: Mon Feb 17 21:37:36 2025 -0800
fix(proxy/_types.py): fix linting error
commit dc4d5cffa6
Author: Krrish Dholakia <krrishdholakia@gmail.com>
5 lines
128 B
Python
5 lines
128 B
Python
from typing import Literal
|
|
|
|
|
|
def my_custom_validate(token: str) -> Literal[True]:
|
|
raise Exception("Custom validate failed")
|