Skip to content

Commit 1c67475

Browse files
committed
solve merge conflicts
2 parents edba2d9 + 032903a commit 1c67475

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

thingsdb/client/client.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@
55
import time
66
from collections import defaultdict
77
from ssl import SSLContext, PROTOCOL_TLS
8+
<<<<<<< HEAD
89
from typing import Any
10+
=======
11+
from typing import Optional, Union, Any, List, Tuple
12+
>>>>>>> 032903ac574ee0bd798375acf264f6c100916d3d
913
from concurrent.futures import CancelledError
1014
from .buildin import Buildin
1115
from .protocol import Proto, Protocol, ProtocolWS
@@ -146,7 +150,7 @@ def connection_info(self) -> str:
146150
def connect_pool(
147151
self,
148152
pool: list[str | tuple[str, int]],
149-
*auth: str | tuple
153+
*auth: str | tuple[str, str]
150154
) -> asyncio.Future[None]:
151155
"""Connect using a connection pool.
152156

thingsdb/room/roombase.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ def _emit_handler(self, data):
261261
}
262262

263263
@staticmethod
264-
def event(event):
264+
def event(event: str):
265265
def wrapped(fun):
266266
fun._event = event
267267
return fun

0 commit comments

Comments
 (0)