Skip to content

Commit b5f17a8

Browse files
committed
fix lints
1 parent da808f9 commit b5f17a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypyc/codegen/emitclass.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ def emit_line() -> None:
325325
if not fields.get('tp_vectorcall'):
326326
# This is just a placeholder to please CPython. It will be
327327
# overriden during setup.
328-
fields['tp_call'] = 'PyVectorcall_Call'
328+
fields['tp_call'] = 'PyVectorcall_Call'
329329
fields['tp_flags'] = ' | '.join(flags)
330330

331331
emitter.emit_line(f"static PyTypeObject {emitter.type_struct_name(cl)}_template_ = {{")

0 commit comments

Comments
 (0)