From 6a24790f67502fee59c4de129af83b529ad82dc4 Mon Sep 17 00:00:00 2001 From: Guilherme Leobas Date: Mon, 31 Jul 2023 14:26:57 +0000 Subject: [PATCH] flake8 --- rbc/external.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/rbc/external.py b/rbc/external.py index 470fee6a..853c7c43 100644 --- a/rbc/external.py +++ b/rbc/external.py @@ -111,9 +111,10 @@ def match_signature(self, atypes): satypes = ", ".join(map(str, atypes)) raise TypeError( - 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}`." + f"compile_target={compile_target}: found no matching function type " + f"to the given argument types `{satypes}` and device `{device}` " + f"while processing `{self.name}`. Available function type is " + f"`{this_type}`." ) def get_codegen(self):