File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change 1212# See the License for the specific language governing permissions and
1313# limitations under the License.
1414
15+ from typing_extensions import override
16+
1517from .base_session_service import BaseSessionService
1618from .in_memory_session_service import InMemorySessionService
1719from .session import Session
@@ -35,18 +37,23 @@ class DatabaseSessionService(BaseSessionService):
3537 def __init__ (self , * args , ** kwargs ):
3638 raise ImportError (self ._ERROR_MESSAGE )
3739
40+ @override
3841 async def create_session (self , * args , ** kwargs ):
3942 raise ImportError (self ._ERROR_MESSAGE )
4043
44+ @override
4145 async def get_session (self , * args , ** kwargs ):
4246 raise ImportError (self ._ERROR_MESSAGE )
4347
48+ @override
4449 async def list_sessions (self , * args , ** kwargs ):
4550 raise ImportError (self ._ERROR_MESSAGE )
4651
52+ @override
4753 async def delete_session (self , * args , ** kwargs ):
4854 raise ImportError (self ._ERROR_MESSAGE )
4955
56+ @override
5057 async def append_event (self , * args , ** kwargs ):
5158 raise ImportError (self ._ERROR_MESSAGE )
5259
You can’t perform that action at this time.
0 commit comments