Skip to content

Commit fcd79dc

Browse files
committed
Fix for inheritance chain in backend ABC
1 parent 78a0258 commit fcd79dc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/guidellm/backend/backend.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
BackendType: Literal type defining supported backend implementations.
1212
"""
1313

14-
from abc import ABC, abstractmethod
14+
from abc import abstractmethod
1515
from collections.abc import AsyncIterator
1616
from typing import Any, Literal, Optional
1717

@@ -33,7 +33,6 @@
3333

3434

3535
class Backend(
36-
ABC,
3736
RegistryMixin["type[Backend]"],
3837
BackendInterface[GenerationRequest, GenerationRequestTimings, GenerationResponse],
3938
):

0 commit comments

Comments
 (0)