config: ignore literals by regexp and config files

No need to have all of them in the ignore list now.
This commit is contained in:
Laurens Valk
2020-01-16 13:28:09 +01:00
parent 81626bb20d
commit b6f75eca9c
5 changed files with 22 additions and 84 deletions
+2 -1
View File
@@ -1,4 +1,5 @@
"""Shortened and simplified motor docs, by hiding optional methods and args."""
"""Shortened and simplified motor docs, by hiding optional
methods and arguments."""
from .builtins import Motor
from .parameters import Direction, Stop
+2 -2
View File
@@ -22,7 +22,7 @@ class DriveBase():
"""
def start(self, drive_speed, turn_rate):
"""Start driving at the specified speed and turnrate, both measured at
"""Start driving at the specified speed and turn rate, both measured at
the center point between the wheels of the robot.
Arguments:
@@ -51,7 +51,7 @@ class DriveBase():
pass
def angle(self):
"""Get the estimated accumulated rotation angle of the drivebase.
"""Get the estimated accumulated rotation angle of the drive base.
Returns:
:ref:`angle`: Accumulated angle since last reset.
+1 -1
View File
@@ -1,4 +1,4 @@
"""Common tools for timing and datalogging."""
"""Common tools for timing and data logging."""
def print():