mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-14 01:00:37 +00:00
[gen-use-table] Fix __doc__
This commit is contained in:
parent
aaf632581a
commit
29f8d9f795
1 changed files with 4 additions and 3 deletions
|
@ -1,9 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
# flake8: noqa: F821
|
||||
|
||||
import logging
|
||||
logging.basicConfig(format='%(levelname)s: %(message)s', level=logging.INFO)
|
||||
|
||||
"""usage: ./gen-use-table.py IndicSyllabicCategory.txt IndicPositionalCategory.txt ArabicShaping.txt DerivedCoreProperties.txt UnicodeData.txt Blocks.txt Scripts.txt IndicSyllabicCategory-Additional.txt IndicPositionalCategory-Additional.txt
|
||||
|
||||
Input files:
|
||||
|
@ -18,6 +15,10 @@ Input files:
|
|||
* ms-use/IndicPositionalCategory-Additional.txt
|
||||
"""
|
||||
|
||||
import logging
|
||||
logging.basicConfig(format='%(levelname)s: %(message)s', level=logging.INFO)
|
||||
|
||||
|
||||
import sys
|
||||
|
||||
if len (sys.argv) != 10:
|
||||
|
|
Loading…
Add table
Reference in a new issue