This repository has been archived on 2025-05-05. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
oin/typings/sense_hat/exceptions.pyi

20 lines
428 B
Python

"""
This type stub file was generated by pyright.
"""
class SenseHatException(Exception):
"""
The base exception class for all SenseHat exceptions.
"""
fmt = ...
def __init__(self, **kwargs) -> None: ...
class ColourSensorInitialisationError(SenseHatException):
fmt = ...
class InvalidGainError(SenseHatException):
fmt = ...
class InvalidIntegrationCyclesError(SenseHatException):
fmt = ...