Skip to content

Commit

Permalink
fix: add two more missed encodings
Browse files Browse the repository at this point in the history
Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
  • Loading branch information
henryiii committed Mar 12, 2023
1 parent f27cf4a commit de80240
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/cli/test_convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
def test_egg_re():
"""Make sure egg_info_re matches."""
egg_names_path = os.path.join(os.path.dirname(__file__), "eggnames.txt")
with open(egg_names_path) as egg_names:
with open(egg_names_path, encoding="utf-8") as egg_names:
for line in egg_names:
line = line.strip()
if line:
Expand Down

0 comments on commit de80240

Please sign in to comment.