João Eiras
João Eiras
Hi ! I'd like to second this suggestion. In my project we had our own `logging.Formatter`, e.g. ``` import logging class MyFormatter(logging.Formatter): def format(self, record): ... ``` which raises an...
Hi. Thanks @embray for your work. I'm also quite interested in this, I divide my work environment between plain linux and my workstation also running windows. Question: I did notice...
> As far as I can work out, there's no equivalent in bash or zsh, This could be easily emulated by invoking a global function created in the shell environment....
I have the same problem with runkeeperstrava. Seems deletes or changes to activities are not synchronized.
My suggestion: add a little button in each activity to force a manual resync.
This seems more of a suggestion for flake8-simplify https://pypi.org/project/flake8-simplify/
The problem is your code is in Python 2 syntax. For instance, you have print statements without parenthesis, old style except clauses, and tuple expansion in function arguments. The file...
> Then why does it have a whole section of Python 3 warnings? For when the syntax works in Python 3 but you have code using stuff that is from...
> Many of the things those checks validate don't work in Python 3, so that doesn't really explain anything. In fact, none of them work in Python 3 except B303,...
> And how long is any project in that state? As long as they don't use a tool like bugbear to fix the issues :) And as long as developers...