Results 24 comments of Nicolas Couture

@rpgoldman I just want to thank you for contributing back to elpy, I recently tested different python setups for emacs, tested elpy along the way and remembered how perfect my...

I'm very curious about this, as a potential contributor, would someone care to provide examples of what's stated in the documentation? My assumption is this is typing related and not...

Are you familiar with release-please? In my experience it's the best release automation tool out there and you can trigger CI, and releases, via the release-please CLI. https://github.com/googleapis/release-please It also...

@matzew You must use event.get(), here's a functional example: ```python import sys import logging from cloudevents.http import from_http from http.server import BaseHTTPRequestHandler, HTTPServer logging.basicConfig(level=logging.DEBUG) class CloudEventHandler(BaseHTTPRequestHandler): def do_POST(self): headers =...