mirror of
https://github.com/ilri/csv-metadata-quality.git
synced 2024-11-10 16:25:45 +01:00
12 lines
131 B
Python
12 lines
131 B
Python
from sys import argv
|
|
|
|
from csv_metadata_quality import app
|
|
|
|
|
|
def main():
|
|
app.run(argv)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|