Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
tanghaibao committed Jan 24, 2025
1 parent cc0e4b7 commit 80cc7d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/jcvi/projects/sugarcane.py
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ def plot_summary(ax, samples: List[Genome]) -> GenomeSummary:
Args:
ax (Axes): Matplotlib axes.
samples (list[Genome]): Summarized genomes.
samples (List[Genome]): Summarized genomes.
Returns:
GenomeSummary: Summary statistics of simulated genomes.
Expand Down Expand Up @@ -563,11 +563,11 @@ def modify_range_end(d: dict, value: int):
return summary


def write_chromosomes(genomes: list[Genome], filename: str):
def write_chromosomes(genomes: List[Genome], filename: str):
"""Write simulated chromosomes to file
Args:
genomes (list[Genome]): List of simulated genomes.
genomes (List[Genome]): List of simulated genomes.
filename (str): File path to write to.
"""
print(f"Write chromosomes to `{filename}`", file=sys.stderr)
Expand Down

0 comments on commit 80cc7d4

Please sign in to comment.