Skip to content

Commit

Permalink
python 3.11 support
Browse files Browse the repository at this point in the history
  • Loading branch information
harkal committed Oct 2, 2024
1 parent ba0b912 commit da7c00a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vyper/venom/passes/dft.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@ def ida_as_graph(self) -> str:
for dep in deps:
a = inst.str_short()
b = dep.str_short()
a += f" {self.inst_offspring_count.get(inst, " - ")}"
b += f" {self.inst_offspring_count.get(dep, " - ")}"
a += f" {self.inst_offspring_count.get(inst, ' - ')}"
b += f" {self.inst_offspring_count.get(dep, ' - ')}"
a = a.replace("%", "\\%")
b = b.replace("%", "\\%")
lines.append(f'"{a}" -> "{b}"')
Expand Down

0 comments on commit da7c00a

Please sign in to comment.