Skip to content

Commit

Permalink
Remove qu2cu.cli from --help
Browse files Browse the repository at this point in the history
  • Loading branch information
behdad committed Apr 30, 2024
1 parent fbe2dc8 commit 1d802db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Lib/fontTools/qu2cu/__main__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import sys

from .cli import main
from .cli import _main as main


if __name__ == "__main__":
Expand Down
2 changes: 1 addition & 1 deletion Lib/fontTools/qu2cu/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def _font_to_cubic(input_path, output_path=None, **kwargs):
font.save(output_path)


def main(args=None):
def _main(args=None):
"""Convert an OpenType font from quadratic to cubic curves"""
parser = argparse.ArgumentParser(prog="qu2cu")
parser.add_argument("--version", action="version", version=fontTools.__version__)
Expand Down

0 comments on commit 1d802db

Please sign in to comment.