#!/usr/bin/env bash
# Based on https://stackoverflow.com/a/56534786

if [[ ! $@ ]]; then
    python3 -m anki-cli-unofficial -h
else
    python3 -m anki-cli-unofficial $@
fi
