#!/usr/bin/env bash

if [[ ! $@ ]]; then
    python3 -m check_docstring -h
else
    python3 -m check_docstring $@
fi
