cquick01

Results 4 comments of cquick01

This seems to work for me ```lua local function init_lua_servers() for _, lsp in ipairs(servers) do require('lspconfig')[lsp].setup { on_attach = on_attach, capabilities = capabilities, } end -- Example custom configuration...

I'm also unable to install libscrc 1.8 with a similar error message about `_crcxtables.h`. I'm running on Ubuntu 22.04 (WSL2). In case it helps, I've uploaded the full output with...

Same issue with hypercorn on poetry 1.4.0. Disabling the new installer with `poetry config installer.modern-installation false` as suggested worked for me as a workaround.

Adding ```diff diff --git a/dataclass_wizard/enums.py b/dataclass_wizard/enums.py index 1b9757e..4fb5356 100644 --- a/dataclass_wizard/enums.py +++ b/dataclass_wizard/enums.py @@ -27,6 +27,9 @@ class LetterCase(Enum): # Converts strings (generally in camel case) to snake case. #...