mirror of
https://github.com/ilri/csv-metadata-quality.git
synced 2024-10-31 19:43:00 +01:00
Alan Orth
cfe09f7126
See: https://spdx.github.io/spdx-spec/appendix-V-using-SPDX-short-identifiers-in-source-files/
14 lines
172 B
Python
14 lines
172 B
Python
# SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
from sys import argv
|
|
|
|
from csv_metadata_quality import app
|
|
|
|
|
|
def main():
|
|
app.run(argv)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|