Skip to content

Commit 1ada6e0

Browse files
more typing fixes
1 parent afc989c commit 1ada6e0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/bytecode/instr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272

7373
HAS_ABSOLUTE_JUMP: Final[set[int]] = set() if PY313 else set(_opcode.hasjabs)
7474

75-
_relative_jumps = set(_opcode.hasjump) if PY313 else set(_opcode.hasjrel)
75+
_relative_jumps = set(_opcode.hasjump) if PY313 else set(_opcode.hasjrel) # type: ignore
7676
HAS_FORWARD_RELATIVE_JUMP: Final[set[int]] = {
7777
op
7878
for op in _relative_jumps

0 commit comments

Comments
 (0)