shairubin / fun_with_ast

let's have fun manipulating ASTs in Python
Apache License 2.0
0 stars 1 forks source link

bug in multiline joined string #151

Closed shairubin closed 7 months ago

shairubin commented 7 months ago

def throw_abstract_impl_not_imported_error(opname, module, context): if module in sys.modules: pass else: raise NotImplementedError( f"{opname}: We could not find the abstract impl for this operator. " f"The operator specified that you may need to import the '{module}' " f"Python module to load the abstract impl. {context}" )