Skip to content

Commit 1195c4f

Browse files
committed
please tox im tired
1 parent 66bfe09 commit 1195c4f

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

ydb/query/base.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ def transaction(self, tx_mode: BaseQueryTxMode) -> "IQueryTxContext":
7676

7777

7878
class IQueryTxContext(abc.ABC):
79-
8079
@abc.abstractmethod
8180
def __init__(
8281
self,

ydb/query/session.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,10 +194,9 @@ def _chech_session_status_loop(self, status_stream):
194194
if status.status != issues.StatusCode.SUCCESS:
195195
self._state.reset()
196196
self._state._change_state(QuerySessionStateEnum.CLOSED)
197-
except Exception as e:
197+
except Exception:
198198
pass
199199

200-
201200
def delete(self) -> None:
202201
if self._state._already_in(QuerySessionStateEnum.CLOSED):
203202
return

0 commit comments

Comments
 (0)