Skip to content

Commit 49e4b82

Browse files
committed
move typing import into try block
1 parent dc3b272 commit 49e4b82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_ov7670.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@
3636
import pwmio
3737
from adafruit_bus_device.i2c_device import I2CDevice
3838
from micropython import const
39-
from circuitpython_typing import WriteableBuffer
4039

4140
try:
4241
from typing import List, Optional
4342
from busio import I2C
4443
from microcontroller import Pin
44+
from circuitpython_typing import WriteableBuffer
4545
except ImportError:
4646
pass
4747

0 commit comments

Comments
 (0)