Typing: improve kivy type stubs (#2681)

This commit is contained in:
Doug Hoskisson
2024-01-14 06:31:13 -08:00
committed by GitHub
parent 962b9b28f0
commit 6904bd5885
3 changed files with 26 additions and 16 deletions

View File

@@ -0,0 +1,9 @@
import io
from kivy.graphics.texture import Texture
class CoreImage:
texture: Texture
def __init__(self, data: io.BytesIO, ext: str) -> None: ...