We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
web/_routes.py contains Colors.to_hex(this_fixture.get_color()) a few times, and there's no type known for this_fixture (in pyright, at least).
Colors.to_hex(this_fixture.get_color())
this_fixture
If that type were annotated, you'd get an early warning that get_color() can return None, but to_hex can't take None.
get_color()
to_hex
The text was updated successfully, but these errors were encountered:
No branches or pull requests
web/_routes.py contains
Colors.to_hex(this_fixture.get_color())
a few times, and there's no type known forthis_fixture
(in pyright, at least).If that type were annotated, you'd get an early warning that
get_color()
can return None, butto_hex
can't take None.The text was updated successfully, but these errors were encountered: