chore: fix underscore

This commit is contained in:
2026-05-11 16:15:01 +02:00
parent 90c9bbbee7
commit e5425b04bc

View File

@@ -122,7 +122,7 @@ class RobotConfig(object):
:vartype pitch: float :vartype pitch: float
""" """
def __init__(self, pitch=None): def __init__(self, pitch=None):
self.pitch = get_config(pitch, "ROBOT_PITCH", 0.0, float) self.pitch = get_config(pitch, "ROBOT__PITCH", 0.0, float)
class Settings(object): class Settings(object):