Skip to content

Commit

Permalink
delimiter not delimeter
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsmejia committed Sep 27, 2023
1 parent bada128 commit f3d53e8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def get_species_detail_by_assembly(assembly: str, division: str):
lines = species_detail_content.splitlines()
lines[0] = lines[0].replace("#", "", 1)

reader = csv.DictReader(lines, delimeter="\t")
reader = csv.DictReader(lines, delimiter="\t")
return utils.find_first_dict("assembly", assembly, reader)


Expand Down

0 comments on commit f3d53e8

Please sign in to comment.