Skip to content

Commit fefb7ad

Browse files
authored
Merge pull request #59 from FoamyGuy/typing_input_error_catch
catch NotImplementedError
2 parents 9995c45 + 5045c4a commit fefb7ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_motor/servo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from typing import Optional, Type
1717
from types import TracebackType
1818
from pwmio import PWMOut
19-
except ImportError:
19+
except (ImportError, NotImplementedError):
2020
pass
2121

2222

0 commit comments

Comments
 (0)