Skip to content

Commit

Permalink
Merge pull request #59 from FoamyGuy/typing_input_error_catch
Browse files Browse the repository at this point in the history
catch NotImplementedError
  • Loading branch information
ladyada committed Dec 27, 2021
2 parents 9995c45 + 5045c4a commit fefb7ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adafruit_motor/servo.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from typing import Optional, Type
from types import TracebackType
from pwmio import PWMOut
except ImportError:
except (ImportError, NotImplementedError):
pass


Expand Down

0 comments on commit fefb7ad

Please sign in to comment.