mirror of
https://github.com/ilri/csv-metadata-quality.git
synced 2024-11-15 10:37:04 +01:00
11 lines
130 B
Python
11 lines
130 B
Python
from csv_metadata_quality import app
|
|
from sys import argv
|
|
|
|
|
|
def main():
|
|
app.run(argv)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|