Skip to content

Commit

Permalink
🚑 Fix shtab
Browse files Browse the repository at this point in the history
  • Loading branch information
Freed-Wu committed Mar 14, 2024
1 parent f49240a commit 2c0933b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/autoconf_language_server/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
try:
import shtab
except ImportError:
import _shtab as shtab
from . import _shtab as shtab

NAME = NAME.replace("_", "-")
VERSION = rf"""{NAME} {__version__}
Expand Down
2 changes: 1 addition & 1 deletion src/make_language_server/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
try:
import shtab
except ImportError:
import _shtab as shtab
from . import _shtab as shtab

NAME = NAME.replace("_", "-")
VERSION = rf"""{NAME} {__version__}
Expand Down

0 comments on commit 2c0933b

Please sign in to comment.