Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/python-sdk/e2b/sandbox/utils.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from typing import TypeVar, Any, cast, Optional, Type
from typing import TypeVar, Any, Generic, cast, Optional, Type
import functools

T = TypeVar("T")


class class_method_variant(object):
class class_method_variant(Generic[T]):
def __init__(self, class_method_name):
self.class_method_name = class_method_name

Expand Down
Loading