Skip to content

Commit 450613a

Browse files
committed
move to correct audit
1 parent c160796 commit 450613a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sqlmesh/lsp/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,20 @@
66
from contextlib import suppress
77
from pathlib import Path
88

9+
from sqlmesh.core.audit.definition import ModelAudit
910
from sqlmesh.core.context import Context
1011
from lsprotocol import types
1112
from pygls.server import LanguageServer
1213
from pygls.workspace import TextDocument
1314
from sqlmesh._version import __version__
14-
from sqlmesh.core.dialect import Audit
1515
from sqlmesh.core.model import Model
1616

1717
logger = logging.getLogger(__name__)
1818

1919
GLOBAL_CONTEXT: t.Optional[
2020
t.Tuple[
2121
Context,
22-
t.Dict[str, t.Tuple[Context, t.Union[Model, Audit]]],
22+
t.Dict[str, t.Tuple[Context, t.Union[Model, ModelAudit]]],
2323
]
2424
] = None
2525

0 commit comments

Comments
 (0)