Main entry point for the CLI.
()
| 807 | |
| 808 | |
| 809 | def main(): |
| 810 | """Main entry point for the CLI.""" |
| 811 | # Set locale for number formatting, restore on exit |
| 812 | old_locale = locale.setlocale(locale.LC_ALL, None) |
| 813 | locale.setlocale(locale.LC_ALL, "") |
| 814 | try: |
| 815 | _main() |
| 816 | finally: |
| 817 | locale.setlocale(locale.LC_ALL, old_locale) |
| 818 | |
| 819 | |
| 820 | def _main(): |
searching dependent graphs…