File: Bitmap.pyi

package info (click to toggle)
python-canmatrix 1.2~github-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 11,012 kB
  • sloc: xml: 30,201; python: 14,631; makefile: 31; sh: 7
file content (15 lines) | stat: -rw-r--r-- 517 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Stubs for xlwt.Bitmap (Python 3)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.

from .BIFFRecords import BiffRecord
from typing import Any

class ObjBmpRecord(BiffRecord):
    def __init__(self, row: Any, col: Any, sheet: Any, im_data_bmp: Any, x: Any, y: Any, scale_x: Any, scale_y: Any) -> None: ...

class ImRawDataBmpRecord(BiffRecord):
    def __init__(self, data: Any) -> None: ...

class ImDataBmpRecord(ImRawDataBmpRecord):
    def __init__(self, filename: Any) -> None: ...