Skip to content

Commit

Permalink
black fix
Browse files Browse the repository at this point in the history
  • Loading branch information
BethYates committed Oct 1, 2024
1 parent ca23581 commit eb89d32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/create_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def ncbi_stats(genome_in, seq_in, writer):
mol.get("chr_name", math.nan),
round(mol.get("length", 0) / 1000000, 2) if mol.get("length") is not None else math.nan,
mol.get("gc_percent", math.nan),
mol.get("genbank_accession")
mol.get("genbank_accession"),
]
)

Expand All @@ -126,7 +126,7 @@ def ncbi_stats(genome_in, seq_in, writer):
mol.get("assigned_molecule_location_type", math.nan),
round(mol.get("length", 0) / 1000000, 2) if mol.get("length") is not None else math.nan,
mol.get("gc_percent", math.nan),
mol.get("genbank_accession")
mol.get("genbank_accession"),
]
)

Expand Down

0 comments on commit eb89d32

Please sign in to comment.