Skip to content

Commit 6fc18e3

Browse files
committed
chore: linting change
1 parent a7be8d3 commit 6fc18e3

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

lua/python/state/init.lua

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,14 @@ Should look like this
3232
}
3333
}
3434
35-
]] --
35+
]]
36+
--
3637
---@class PythonState
3738
---@field venvs table<string, PythonStateVEnv>
3839
---@field dap table<string, dap.Configuration>
3940
PythonState = PythonState or {
4041
venvs = {},
41-
dap = {}
42+
dap = {},
4243
}
4344

4445
local data_path = vim.fn.stdpath("data")
@@ -98,7 +99,7 @@ end
9899
---@param new_state PythonState
99100
function PythonStateM.save(new_state)
100101
local result_state = merge_tables(PythonState, new_state)
101-
vim.fn.writefile({vim.json.encode(result_state)}, state_path, "s")
102+
vim.fn.writefile({ vim.json.encode(result_state) }, state_path, "s")
102103
end
103104

104105
return PythonStateM

0 commit comments

Comments
 (0)