Add path to MaterialIcons codepoints file

This commit is contained in:
Fabien Castan 2023-12-20 09:36:14 +01:00 committed by GitHub
parent 0fcbbbcd3c
commit c98e4a12c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,8 @@
import argparse
import os
parser = argparse.ArgumentParser(description='Generate a MaterialIcons.qml singleton from codepoints file.')
parser = argparse.ArgumentParser(description='Generate a MaterialIcons.qml singleton from codepoints file.\n'
'An example of codepoints file for MaterialIcons: https://github.com/google/material-design-icons/blob/master/font/MaterialIcons-Regular.codepoints.')
parser.add_argument('codepoints', type=str, help='Codepoints file.')
parser.add_argument('--output', type=str, default='.', help='')