Results 17 comments of ajoino

Hi, new to using Black and have an observation. When I tried the --preview feature I found it unaesthetic that splitting f-strings doesn't keep the `f` in `f"` if one...

@bbugyi200 Thank you for the link and your impressive work. I agree that this is a minor issue. Just to further explain my "gripe", it's not that `f` isn't appended,...

> > Interesting stuff, thanks. > > Thoughts on stuff retrospectively, that might or might not be valuable to mention... > > > > * It probably would have made...

Glad to hear a positive response. What are the best practices for developing and testing this module? Just run `pip install . -e` in the repo?

@jtm0 is it possible to change your solution so that it also works with `typer.Argument`? I currently have an app where all commands share one argument and 3 options. Your...

I'm having this issue currently and I'm not sure how to resolve it. I've tried uninstalling and reinstalling cairocffi([xcb]) multiple times. I've uninstalled the ubuntu python3-* packages that relate to...

I tried running the code [qtile runs to check if cairocffi has xcffib support](https://github.com/qtile/qtile/blob/3fb4910f9b780c6eef568c877be37ef14af7114d/setup.py#L37) and sure enough, it causes an `AttributeError`. I also tested some other functions names from [https://github.com/Kozea/cairocffi/blob/e17b48840eab93682a551b1c4e346f6abdfdd15f/cairocffi/constants.py](https://github.com/Kozea/cairocffi/blob/e17b48840eab93682a551b1c4e346f6abdfdd15f/cairocffi/constants.py)...

Looking into the `/usr/lib/x86_64-linux-gnu/libcairo.so.2`, it contains the `cairo_xcb_surface_create`, despite the following code ```python from cairocffi import cairo cairo.cairo_xcb_surface_create ``` throwing `AttributeError: cffi library 'libcairo.so.2' has no function, constant or global...

I fixed it by manually running `cairocffi/ffi_build.py` according to [this comment](https://github.com/qtile/qtile/issues/2268#issuecomment-808918334) and then installing qtile from PyPI. If i tried to install it from a cloned repo I get the...

I'm having the same issue on Ubuntu 20.04 when I tried to update qtile :upside_down_face: I have no idea what's causing this and commented on a [similar issue](https://github.com/Kozea/cairocffi/issues/190) on the...