Skip to content

Commit 9544d5d

Browse files
committed
Fix mypy
1 parent 997a858 commit 9544d5d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Tools/jit/_targets.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -332,14 +332,14 @@ def _handle_relocation(
332332

333333
class _COFF32(_COFF):
334334
# These mangle like Mach-O and other "older" formats:
335-
label_prefix: str = "L"
336-
symbol_prefix: str = "_"
335+
label_prefix = "L"
336+
symbol_prefix = "_"
337337

338338

339339
class _COFF64(_COFF):
340340
# These mangle like ELF and other "newer" formats:
341-
label_prefix: str = ".L"
342-
symbol_prefix: str = ""
341+
label_prefix = ".L"
342+
symbol_prefix = ""
343343

344344

345345
class _ELF(

0 commit comments

Comments
 (0)