Yak

Results 5 issues of Yak

Hello, For the character collection, is there a reason `Client.get_by_name` is using a query with `case(False)` on `name.first` instead of a simple query on `name.first_lower`: https://github.com/leonhard-s/auraxium/blob/145470755c2136366ba6cfe7a9003eda3772ab6a/auraxium/_client.py#L197 While the docstring for...

enhancement

Not really relevant for real use, but might be impactful for new users as it's a basic example from the README ### Reproduction steps: **Config**: Python 3.10.4, auraxium 0.2.2, windows...

enhancement
prio:normal

Consider the following: ```py import tomllib import sys def main(): print(sys) print(tomllib) ``` Formatted with isort: ```py import sys import tomllib def main(): print(sys) print(tomllib) ``` Formatted with `ruff --fix`:...

Reminder on the rule: [Checks for implicitly concatenated strings on a single line.](https://docs.astral.sh/ruff/rules/single-line-implicit-string-concatenation/) Why I believe there is actually no conflict with ruff format on default settings: Imagine a situation...

formatter
needs-decision

In `whitelist.py`, there is an import on `pkg_resources` from `setuptools`. https://github.com/globality-corp/flake8-logging-format/blob/b7da42d1593ca19c5390be1e710439d0c45099ac/logging_format/whitelist.py#L5 This makes the code fail on environments without setuptools. I suggest avoiding using the package altogether or making it...