dbr/Ben
dbr/Ben
@jjmaestro According to the [Pyflakes Launchpad](https://launchpad.net/pyflakes/), the source lives at https://launchpad.net/divmod.org/trunk - so I think you can do ``` bzr branch lp:divmod.org ``` ..maybe? Launchpad is confusing.
My only complaint about comments like `# pylint: disable=E201` is that I can never remember what `E201` is, nor why whoever wrote it decided to disable the message.. If the...
This change looks good to me - the `os.makedirs` call is just to ensure the directory exists, it's allowed to fail silently (the config file is created regardless) Pedantically I'd...
This seems interesting, but I'm not sure how helpful it'll be for the main octogit tests.. To properly test the various commands, the hardest part will be stubbing out the...
Agreed. Having a secret dummy account will make it difficult for contributors to run the tests, stubbed responses means they can be run by all, and quickly. Would be good...
Weird. Try trashing the `~/.config/octogit/` directory and logging in again
You're using `gnome-terminal`? The stray characters look like misintepreted ASNI escape sequences (for colouring) Do you get the same mess just running "octogit"? Also, if you run `octogit issues |...
Haven't tested but https://github.com/jfrimmel/cargo-valgrind seems pretty good from a skim of it's source Only minor issue is the project doesn't seem to include prebuilt binaries (but it barely has any...
Appear it is no longer used: - https://github.com/sourcegraph/sourcegraph/issues/23501 - https://sourcegraphstatus.com/ which is using Atlassian's Statuspage
Not sure if it was discussed already, but is it feasible to only use [`# typing: ignore` comments](https://mypy.readthedocs.io/en/stable/common_issues.html#spurious-errors-and-locally-silencing-the-checker) to suppress existing known errors? Main benefit would be people using mypy...