We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fbe3be commit a39dc2aCopy full SHA for a39dc2a
2 files changed
recorder/__main__.py
@@ -214,6 +214,7 @@ def test(
214
config = Config({device_class: {device_id: device}})
215
recorder = Recorder(config, output_folder)
216
output_folder = recorder(seconds=5)
217
+ device_class.show_results(output_folder)
218
219
220
def main():
recorder/config.py
@@ -56,7 +56,7 @@ def devices(
56
)
57
except Exception as e:
58
raise RuntimeError(
59
- f"Could not initialize {str(device_class)}{index} "
60
- f"with config:\n {yaml_dump(device_config)}\n {str(e)}"
+ f"Could not initialize {str(device_class)} {index} "
+ f"with config:\n{yaml_dump(device_config)}\n{str(e)}"
61
) from e
62
return devices
0 commit comments