Commit 9b2dad4
CI fix: drop forward-ref quotes from iter_accessible_slots annotation
ruff UP037: `list[tuple[int, "ItemSlot | None"]]` -> the quotes were
unnecessary because `ItemSlot` is imported at the module top (line 52)
and `from __future__ import annotations` is in effect. Plain
`list[tuple[int, ItemSlot | None]]` is the canonical form.
Verification:
* ruff check python/minecraft_bot tests: all checks passed.
* pytest tests/python/unit: 980 passed.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>1 parent b1f0063 commit 9b2dad4
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
833 | 833 | | |
834 | 834 | | |
835 | 835 | | |
836 | | - | |
| 836 | + | |
837 | 837 | | |
838 | 838 | | |
839 | 839 | | |
| |||
0 commit comments