Skip to content

Commit

Permalink
ci: fix linter's complains
Browse files Browse the repository at this point in the history
  • Loading branch information
mike325 committed Dec 5, 2023
1 parent 4a6ac20 commit c7d9c20
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions config/wezterm/wezterm.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
if not unpack then
_G['unpack'] = _G['table'].unpack -- stylua: ignore
if not _G['unpack'] then
_G['unpack'] = _G['table'].unpack
end

require 'patch_runtime'
Expand Down
2 changes: 1 addition & 1 deletion scripts/pythonstartup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
except ImportError:
try:
import readline as _readline
import rlcompleter # noqa
import rlcompleter # noqa

readline = _readline
except ImportError:
Expand Down

0 comments on commit c7d9c20

Please sign in to comment.