mirror of
https://github.com/ful1e5/Bibata_Cursor.git
synced 2025-05-24 12:07:02 -04:00
⚡ Main method & typo
This commit is contained in:
parent
3f2b327641
commit
7e452a4512
1 changed files with 4 additions and 4 deletions
8
build.py
8
build.py
|
@ -16,17 +16,17 @@ def get_args_parser() -> ArgumentParser:
|
|||
parser = argparse.ArgumentParser(description=__info__)
|
||||
|
||||
parser.add_argument("-x", "--x11", action="store_true", default=False,
|
||||
help=("Bundle X11 cursors using bitmaps"
|
||||
help=("Bundle X11 cursors from bitmaps"
|
||||
" (default: %(default)s)"))
|
||||
|
||||
parser.add_argument("-w", "--windows", action="store_true", default=False,
|
||||
help=("Bundle Windows cursors using bitmaps"
|
||||
help=("Bundle Windows cursors from bitmaps"
|
||||
" (default: %(default)s)"))
|
||||
|
||||
return parser
|
||||
|
||||
|
||||
def main() -> None:
|
||||
def build() -> None:
|
||||
parser = get_args_parser()
|
||||
try:
|
||||
args = parser.parse_args()
|
||||
|
@ -58,4 +58,4 @@ def main() -> None:
|
|||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
build()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue