Skip to content

Commit 8c85fe2

Browse files
committed
fix type annotations
1 parent b71dace commit 8c85fe2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

shared-bindings/bitmapfilter/__init__.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -670,12 +670,12 @@ MP_DEFINE_CONST_FUN_OBJ_KW(bitmapfilter_blend_precompute_obj, 0, blend_precomput
670670

671671
//|
672672
//| def blend(
673-
//| dest: Bitmap,
674-
//| src1: Bitmap,
675-
//| src2: Bitmap,
673+
//| dest: displayio.Bitmap,
674+
//| src1: displayio.Bitmap,
675+
//| src2: displayio.Bitmap,
676676
//| lookup: BlendFunction | BlendTable,
677-
//| mask: Bitmap = None,
678-
//| ) -> Bitmap:
677+
//| mask: displayio.Bitmap = None,
678+
//| ) -> displayio.Bitmap:
679679
//| """Blend the 'src1' and 'src2' images according to lookup function or table 'lookup'
680680
//|
681681
//| If ``lookup`` is a function, it is converted to a `BlendTable` by

0 commit comments

Comments
 (0)