6 lines
174 B
Python
6 lines
174 B
Python
from typing import TypeVar
|
|
|
|
# Bound type variable to allow methods to return `self` of subclasses
|
|
T = TypeVar("T", bound="Message")
|
|
ST = TypeVar("ST", bound="IProtoMessage")
|