Alex Riina
Alex Riina
Based on the failures, I might be going about this the wrong way. An alternative could be ``` - self.get(key) + value = client.get(key) + value = self.get_value(value) ``` which...
I'm no longer using this plugin for incremental reading, but it looks like instead of selecting the deck by name, the plugin may have to switch to selecting the deck...
Codacity doesn't like the sqlite with string interpolation as a security risk, but the value that is interpolated is not a user defined value. The style I have is consistent...
I think you can fix this issue by commenting out the javascript in the width.js file ```javascript // if (screen.width > {maxWidth}) {{ // var styleSheet = document.styleSheets[0]; // styleSheet.insertRule(...
This plugin maintains its configuration in a .json file and it looks like it is unable to read yours for some reason. If you've never used the plugin before, you...
I'm not positive this is your issue, but I think you need ``` - change_actions = ('my_action') + change_actions = ('my_action', ) ```
The issue is basically that "save as new" is an add option that takes place from the change_form template. When there is an error saving as new (in this case...
I haven't profiled this myself, but reading through the comments and code in `get_version_from_app`, it seems like `pkg_resources.get_distributions` is the slow part and it's getting called on everything in `INSTALLED_APPS`....
I ran into the same kind of issue and eventually ended up with a very different config that does have both working. I have just ```lua require "lspconfig".efm.setup { filetypes...
This will make it so Money(100, "USD") shows as $100 instead of US$100 if that's what you're asking about ``` moneyed.localization._FORMATTER.add_sign_definition('DEFAULT', moneyed.USD, prefix='$') ```