We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ff766c commit f3d8e05Copy full SHA for f3d8e05
.travis.yml
@@ -23,7 +23,8 @@ deploy:
23
tags: true
24
25
install:
26
- - pip install pylint circuitpython-build-tools Sphinx sphinx-rtd-theme pytest
+ - pip install --force-reinstall pylint==1.9.2
27
+ - pip install circuitpython-build-tools Sphinx sphinx-rtd-theme pytest
28
29
script:
30
- py.test
tests/test_stepper.py
@@ -14,6 +14,10 @@ class Coil:
14
def __init__(self):
15
self._duty_cycle = 0
16
17
+ @property
18
+ def frequency(self):
19
+ return 1500
20
+
21
@property
22
def duty_cycle(self):
return self._duty_cycle
0 commit comments