#!/bin/bash

export PYQTGRAPH_QT_LIB=PySide6
export QT_API=pyside6

if [ -n "${1}" ]
then
    asammdf --measurements "${1}"
else
    asammdf
fi
