|
|
@ -1,6 +1,6 @@ |
|
|
|
"""Common base client.""" |
|
|
|
|
|
|
|
from socket import SOCK_STREAM, SocketKind, socket |
|
|
|
from socket import SocketKind, socket |
|
|
|
from typing import Optional |
|
|
|
|
|
|
|
|
|
|
@ -22,7 +22,8 @@ class BaseClient: |
|
|
|
self.timeout = timeout |
|
|
|
self.passwd = passwd |
|
|
|
|
|
|
|
def __init_subclass__(cls, *, socket_type: SocketKind = SOCK_STREAM): |
|
|
|
def __init_subclass__(cls, *, socket_type: SocketKind | None = None): |
|
|
|
if socket_type is not None: |
|
|
|
cls._socket_type = socket_type |
|
|
|
|
|
|
|
def __enter__(self): |
|
|
|