Tomas

Results 87 comments of Tomas

Running picosvg on https://github.com/googlefonts/noto-emoji/blob/master/svg/emoji_u1f54d.svg throws: ``` emoji_u1f54d.svg Traceback (most recent call last): File "sheet.py", line 20, in psvg = svg.topicosvg() File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/picosvg/svg.py", line 945, in topicosvg svg.topicosvg(inplace=True) File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/picosvg/svg.py", line...

> > Released 3.3.3 > > Excelent! Thanks. What about the `prettier-vscode` extension? you can make prettier-vscode use a different prettier version by `npm i -g prettier`

@sosukesuzuki I think the tests missed a case: ``` @let foo = 'hello'; {{ foo }} ``` In v3.3.3 is still getting reformatted to: ``` @let foo = 'hello'; {{...

My bad. I did not see the `getAll` option.

``` @include mat.button-density(-2); @include mat.icon-button-density(-2); ``` Does not seem to work. A few CSS variables get added, but the padding is still stuck at a hard-coded 12px on `.mat-mdc-icon-button.mat-mdc-button-base`

We should probably move the typings to DefinitelyTyped so they can be community driven. On Sat, Mar 8, 2025, 11:09 PM 梁海 Liang Hai ***@***.***> wrote: > Hi @ebraminio ,...

I got the same error using ```python reference_images=[ types.RawReferenceImage( reference_image=types.Image( image_bytes=image.generated_images[0].image.image_bytes, mime_type=image.generated_images[0].image.mime_type ), reference_id=0 ) ], ``` where `image` is a generate_image() response. Nothing I tried worked, eventually it complains...

Even using: ```python reference_images=[ { "reference_image": image.generated_images[0].image, # this is of type Image already "reference_id": 0 } ], ``` throws the `Reference image should have image type` if `types.RawReferenceImage(reference_image=image.generated_images[0].image, reference_id=1)`...

In my case, the error was the `model` was incorrect. Make sure you're using an editing model for `edit_image`, and a generation model for `generate_image` Imagen 4 does not have...