DanCardin

Results 56 comments of DanCardin

I for one have a deep hatred of backslashes and would really prefer black never use them. And since python's syntax here doesn't really allow for wrapping, i dont think...

@pliniozanini I dont suppose you'd mind checking out this branch https://github.com/schireson/pytest-mock-resources/pull/172 and testing to see if it solves your issue? I added tests of both sides and now don't see...

Just released 2.6.3 which hopefully fixes both directions of issue? We at least have some tests in either direction, so it should be a net-different issue if you're still encountering...

I dont remember writing that 😅, the content in the docs seems clear enough. Instead it might be better to warn in the event that includes are supplied which ultimately...

My personal preference would be to avoid importing any of the optional backends from the `__init__.py`, and doing the import guard from inside the module itself (presumably on the imports...

My home-manager config for neovim looks like: ``` programs.neovim = { enable = true; package = pkgs.neovim-unwrapped; vimAlias = true; withNodeJs = false; withPython3 = true; withRuby = false; extraPython3Packages...

``` set nocompatible set packpath^=/nix/store/ckjy56k5x70dmyzjgg4xl8by5fcjaa4n-vim-pack-dir set runtimepath^=/nix/store/ckjy56k5x70dmyzjgg4xl8by5fcjaa4n-vim-pack-dir filetype indent plugin on | syn on ``` I have no opinion on what happens if there's not already an init.vim there 😛...

I ideally dont want any file (init.vim/init.lua) written under any circumstances, since i maintain my configuration for nvim outside the context of nix. In fact, the autogenerated mucking about with...

Fwiw, I arrived here looking for something like `is_sequence_type`, to return True for all of list, tuple, set, etc The above solutions did not work for me given that I...