Source code for bibliopixel.commands.clear_cache

"""
Clear the loady git repository library cache
"""

import loady


[docs]def run(args): loady.library.clear()
[docs]def add_arguments(parser): parser.set_defaults(run=run)