Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sligocki committed Aug 28, 2024
1 parent 2f6580c commit d36f9d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions circles_plot.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3

import argparse
from collection.abc import Collection
from collections.abc import Collection
import json
import math
from pathlib import Path
Expand Down Expand Up @@ -30,7 +30,7 @@ def main():
parser.add_argument("circles_json", nargs="+", type=Path)
parser.add_argument("--wikitree-ids", "--ids", nargs="*")
parser.add_argument("--max-plots", type=int, default=20)
parser.add_argument("--max-circle", type=int)
parser.add_argument("--max-circle", type=int, default=60)

parser.add_argument("--log-y", action="store_true",
help="Plot with log-Y axis.")
Expand Down

0 comments on commit d36f9d6

Please sign in to comment.