From 8a5dd3d33b164f73b157c506726780136965c323 Mon Sep 17 00:00:00 2001 From: Sylvain MARIE Date: Mon, 23 Mar 2020 11:59:47 +0100 Subject: [PATCH] fixed duplicate base class --- makefun/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefun/main.py b/makefun/main.py index 6754c10..a794787 100644 --- a/makefun/main.py +++ b/makefun/main.py @@ -966,7 +966,7 @@ class UndefinedSymbolError(NameError): pass -class SourceUnavailable(IOError, OSError): +class SourceUnavailable(OSError): """ Exception raised by @compile_fun when the function source is not available (inspect.getsource raises an error) """