File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change 2727
2828"""
2929
30+ from __future__ import annotations
31+
32+
3033import time
3134import array
3235import math
5558 pass
5659
5760try :
61+ from typing import TYPE_CHECKING
62+ except ImportError :
63+ TYPE_CHECKING = const (0 )
64+
65+ if TYPE_CHECKING :
5866 from typing import Union , Tuple , Optional , Generator
5967 from adafruit_bitmap_font .bdf import BDF # pylint: disable=ungrouped-imports
6068 from adafruit_bitmap_font .pcf import PCF # pylint: disable=ungrouped-imports
6169 from fontio import BuiltinFont
6270 from keypad import Keys , ShiftRegisterKeys
6371 from neopixel import NeoPixel
64- from adafruit_lsm6ds .lsm6ds33 import LSM6DS33
65- from adafruit_lis3dh import LIS3DH_I2C
66- except ImportError :
67- pass
6872
6973
7074__version__ = "0.0.0-auto.0"
You can’t perform that action at this time.
0 commit comments