Skip to content

Commit 01d15da

Browse files
committedJun 7, 2023
fix(lsp): this duplicate error with pyright
1 parent 211c735 commit 01d15da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lua/tvl/core/resources/lsp.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ return {
114114
formatting.black,
115115
formatting.markdownlint,
116116
formatting.beautysh.with({ extra_args = { "--indent-size", "2" } }),
117-
diagnostics.flake8.with({ extra_args = { "--ignore=E203,E501,E402,F401" }, filetypes = { "python" } }),
117+
diagnostics.flake8.with({ extra_args = { "--ignore=E203,E501,E402,F401,F821" }, filetypes = { "python" } }),
118118
},
119119
})
120120
end,

0 commit comments

Comments
 (0)
Please sign in to comment.