We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f39bf2 commit a85d71bCopy full SHA for a85d71b
python/fusion_engine_client/messages/configuration.py
@@ -581,7 +581,8 @@ class LeapSecondConfig(_conf_gen.IntegerVal):
581
decoded from available signals. Set to -1 to disable leap second override and re-enable internal leap second
582
handling.
583
"""
584
- value: int = -1
+ def __new__(cls, value: int = -1):
585
+ return super().__new__(cls, value)
586
587
588
@_conf_gen.create_config_class(ConfigType.UART1_BAUD, _conf_gen.UInt32Construct)
0 commit comments