mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-08 22:21:35 +00:00
fix(proxy): add return annotation to WriterPinnedClient init
Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
parent
63762b8ee0
commit
b8272f7177
1 changed files with 1 additions and 1 deletions
|
|
@ -68,7 +68,7 @@ class WriterPinnedClient:
|
|||
|
||||
__slots__ = ("db",)
|
||||
|
||||
def __init__(self, db: "PrismaWrapper | RoutingPrismaWrapper"):
|
||||
def __init__(self, db: "PrismaWrapper | RoutingPrismaWrapper") -> None:
|
||||
self.db: Final = db.writer if isinstance(db, RoutingPrismaWrapper) else db
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue