1
0
mirror of https://github.com/ilri/csv-metadata-quality.git synced 2025-01-10 12:35:22 +01:00

12 lines
131 B
Python
Raw Normal View History

from sys import argv
from csv_metadata_quality import app
def main():
app.run(argv)
2019-08-29 01:10:39 +03:00
if __name__ == "__main__":
main()