Added type hints to countio

This commit is contained in:
dherrada 2020-07-02 14:15:43 -04:00
parent 51fd286cbf
commit dd27fdfbe3
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@
//| """Counter will keep track of the number of falling edge transistions (pulses) on a
//| given pin"""
//|
//| def __init__(self, pin_a):
//| def __init__(self, pin_a: microcontroller.Pin):
//| """Create a Counter object associated with the given pin. It tracks the number of
//| falling pulses relative when the object is constructed.
//|