Skip to content

Commit

Permalink
Refactor f -> fin
Browse files Browse the repository at this point in the history
  • Loading branch information
joeycarter committed Jan 15, 2025
1 parent b8795a6 commit 70f2d29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ def parse_dep_versions():
pattern_pl = re.compile(r"^pennylane=(\S+)", re.MULTILINE)
pattern_lq = re.compile(r"^lightning=(\S+)", re.MULTILINE)

with open(".dep-versions", encoding="utf-8") as f:
lines = f.read()
with open(".dep-versions", encoding="utf-8") as fin:
lines = fin.read()

match_jax = pattern_jax.search(lines)
match_pl = pattern_pl.search(lines)
Expand Down

0 comments on commit 70f2d29

Please sign in to comment.