#!/usr/bin/env python3 """A command line utility to export Google Keep notes to markdown files with metadata stored as a frontmatter header.""" from keep_exporter import main if __name__ == "__main__": # pylint: disable=no-value-for-parameter main()