Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
erick-xanadu committed Jan 9, 2025
1 parent 65ee6ff commit f26e3c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/catalyst/passes/pass_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ def get_options(self):
"""
retval = " ".join(f"{str(option)}" for option in self.options)
retval2 = " ".join(f"{str(key)}={str(value)}" for key, value in self.valued_options.items())
return " ".join([retval, retval2])
return " ".join([retval, retval2]).strip()

def __repr__(self):
return (
Expand Down

0 comments on commit f26e3c2

Please sign in to comment.