In my case this is calls from pygame, for example:
pygame.mouse.set_visible(False)
Ruff reports FBT003 Boolean positional value in function call.
If I try use keyword argument, I'll get TypeError: set_visible() takes no keyword arguments
And it happens with every function from every C-library that takes bool.
So the only solution now is suppress this message.
Ruff version: 0.1.9.