StefanBRas

Results 9 issues of StefanBRas

Some of the links to FastAPIs documentation were dead. This PR fixes that.

`task --list-all` is computing something even though it seems like it shouldn't to show the list of tasks. It's an problem because autocompletion relies on `--list-all` so right now it's...

type: performance
area: loops

It seems like `IsInstance` will never be equal to a pydantic model: ```python from dirty_equals import IsInstance from pydantic import BaseModel class A(BaseModel): pass print(A() == IsInstance(A)) # False print(A()...

Hello! Using gnsync to upload a .txt file like this: `æ å ø é á ê ä` will create a note looking like this: `æ å ø é á ê...

unicode_issue

### Description If multiple packages uses the same namespace and have files with the same name, they will overwrite each other. This is by design, as seen in [this line](https://github.com/python-poetry/poetry/blob/64d8931538baaf91e4021ad245389c544e6e788c/src/poetry/installation/wheel_installer.py#L49)....

kind/bug
area/installer
status/triage

Hey! I'm trying out diff_cover in Github Actions. Github Actions supports annotations where If I in a job run print out something like ``` ::warning file=my_file,line=2,title=Missing Coverage::Line XXX is missing...

If you setup `Pytester` tests that uses `tmp_path` then they will share directory if named the same, even if run in different tests. This only happens when run with `runpytest`...

## What are the steps to reproduce this issue? Given the spec ```yaml openapi: 3.0.3 info: title: test version: 0.1.0 paths: {} components: schemas: User: type: object properties: id: type:...

enhancement

Im trying to make a metadata hook in a plugin package, but for some reason it fails to run the `update` method at all for hatchling version 1.22.2 and up....