Repository URL to install this package:
|
Version:
0.23.3 ▾
|
pylance
/
commit.py
|
|---|
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright The Lance Authors
from contextlib import AbstractContextManager
from typing import Callable
CommitLock = Callable[[int], AbstractContextManager]
class CommitConflictError(Exception):
pass