Files
RoboGauge/robogauge/tasks/gauge/flat/flat_gauge.py
2025-11-27 16:04:14 +08:00

14 lines
287 B
Python

# -*- coding: utf-8 -*-
'''
@File : flat_gauge.py
@Time : 2025/11/27 16:03:11
@Author : wty-yy
@Version : 1.0
@Blog : https://wty-yy.github.io/
@Desc : Flat Gauge Implementation
'''
from robogauge.tasks.gauge.base_gauge import BaseGauge
class FlatGauge(BaseGauge):
...