ardupilot/Tools/autotest/param_metadata/emit.py
Pierre Kancir 9e1ffcae5d Tools: update python coding style
Tools: update PrintVersion.py coding style

autotest: update python coding style

pysim: update python coding style

jsb_sim: update Python coding style

param_metadata: update Python coding style
2016-09-01 13:05:11 +10:00

26 lines
410 B
Python

#!/usr/bin/env python
"""
The standard interface emitters must implement
"""
import re
class Emit:
def __init__(self):
pass
prog_values_field = re.compile(r"\s*(-?\w+:\w+)+,*")
def close(self):
pass
def start_libraries(self):
pass
def emit(self, g, f):
pass
def set_annotate_with_vehicle(self, value):
self.annotate_with_vehicle = value