Skip to content

Commit

Permalink
fix(init): trick type annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
pysan3 committed Mar 26, 2024
1 parent 5b46603 commit 48f9d2b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lua/pathlib/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ local const = require("pathlib.const")

if const.IS_WINDOWS then
return require("pathlib.windows")
else
elseif true then
return require("pathlib.posix")
else
return require("pathlib.base") -- trick type annotations
end

0 comments on commit 48f9d2b

Please sign in to comment.