14 lines
318 B
Python
14 lines
318 B
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
@File : flat_gauge_config.py
|
|
@Time : 2025/11/27 16:03:02
|
|
@Author : wty-yy
|
|
@Version : 1.0
|
|
@Blog : https://wty-yy.github.io/
|
|
@Desc : Flat Gauge Configuration
|
|
'''
|
|
from robogauge.tasks.gauge.base_gauge_config import BaseGaugeConfig
|
|
|
|
class FlatGaugeConfig(BaseGaugeConfig):
|
|
...
|