Skip to content

Commit

Permalink
Fix for Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhermeleobas committed Jul 31, 2023
1 parent f72513f commit e96384c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rbc/external.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def match_signature(self, atypes):

satypes = ", ".join(map(str, atypes))
raise TypeError(
f"{compile_target=}: found no matching function type to the given argument types"
f"compile_target={compile_target}: found no matching function type to the given argument types"
f" `{satypes}` and device `{device}` while processing `{self.name}`."
f" Available function type is `{this_type}`."
)
Expand Down

0 comments on commit e96384c

Please sign in to comment.