Skip to content

Commit f34a1d3

Browse files
committed
Fix op dependencies
1 parent e924ee9 commit f34a1d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypyc/primitives/bytearray_ops.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
return_type=bytearray_rprimitive,
2323
c_function_name="PyByteArray_FromObject",
2424
error_kind=ERR_MAGIC,
25-
dependencies=[BYTEARRAY_EXTRA_OPS],
2625
)
2726

2827
# bytearray() -- construct empty bytearray
@@ -32,6 +31,7 @@
3231
return_type=bytearray_rprimitive,
3332
c_function_name="CPyByteArray_New",
3433
error_kind=ERR_MAGIC,
34+
dependencies=[BYTEARRAY_EXTRA_OPS],
3535
)
3636

3737
# isinstance(obj, bytearray)

0 commit comments

Comments
 (0)