9 lines
163 B
Python
9 lines
163 B
Python
#!/usr/bin/env python3
|
|
"""Compatibility wrapper for the modularized ADC plotter."""
|
|
|
|
from rfg_adc_plotter.main import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|