Skip to content

Commit 6280203

Browse files
committed
take #4 at fixing sphinx issues
1 parent c0b153b commit 6280203

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

XRPLib/imu.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
# v1.0 2019.7
66
try:
77
from .imu_defs import *
8-
except TypeError:
8+
from uctypes import struct, addressof
9+
except TypeError, ModuleNotFoundError:
910
# Import wrapped in a try/except so that autodoc generation can process properly
1011
pass
11-
from uctypes import struct, addressof
1212
from machine import I2C, Pin, Timer, disable_irq, enable_irq
1313
import time, math
1414

0 commit comments

Comments
 (0)