This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
"""A Language Server Protocol (LSP) server for SQL with SQLMesh integration.""" | |
import asyncio | |
import gc | |
import io | |
import logging | |
import re | |
import typing as t | |
import weakref |