diff options
| author | William Boman <william@redwill.se> | 2022-11-20 18:07:31 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-20 18:07:31 +0100 |
| commit | 60a03f55ab8b232c56c9ce3c4c3bf5673847e245 (patch) | |
| tree | 0fbd65f001751f1edb2e5019ca98a53bcf1202ba /lua | |
| parent | chore: update generated code (#679) (diff) | |
| download | mason-60a03f55ab8b232c56c9ce3c4c3bf5673847e245.tar mason-60a03f55ab8b232c56c9ce3c4c3bf5673847e245.tar.gz mason-60a03f55ab8b232c56c9ce3c4c3bf5673847e245.tar.bz2 mason-60a03f55ab8b232c56c9ce3c4c3bf5673847e245.tar.lz mason-60a03f55ab8b232c56c9ce3c4c3bf5673847e245.tar.xz mason-60a03f55ab8b232c56c9ce3c4c3bf5673847e245.tar.zst mason-60a03f55ab8b232c56c9ce3c4c3bf5673847e245.zip | |
fix(yapf): install toml to support parsing .toml config files (#682)
Fixes #680.
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/mason-registry/yapf/init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/mason-registry/yapf/init.lua b/lua/mason-registry/yapf/init.lua index c8cb5212..15041f2f 100644 --- a/lua/mason-registry/yapf/init.lua +++ b/lua/mason-registry/yapf/init.lua @@ -7,5 +7,5 @@ return Pkg.new { homepage = "https://pypi.org/project/yapf/", languages = { Pkg.Lang.Python }, categories = { Pkg.Cat.Formatter }, - install = pip3.packages { "yapf", bin = { "yapf" } }, + install = pip3.packages { "yapf", "toml", bin = { "yapf" } }, } |
