Skip to content

Commit

Permalink
fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
vighneshiyer committed Mar 15, 2023
1 parent 734fd32 commit 3d9a51e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hammer/synthesis/genus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def mapped_v_path(self) -> str:
@property
def mapped_hier_v_path(self) -> str:
if self.version() >= self.version_number("191"):
return os.path.join(self.run_dir, "{top}_noilm.mapped.v".format(self.top_module))
return os.path.join(self.run_dir, "{}_noilm.mapped.v".format(self.top_module))
else:
return os.path.join(self.run_dir, "genus_invs_des/genus.v.gz")

Expand Down

0 comments on commit 3d9a51e

Please sign in to comment.