From 911a1ad840010ea8d8f8c5e422b14ba3287c8423 Mon Sep 17 00:00:00 2001 From: _ <_> Date: Thu, 17 May 2018 15:07:17 -0700 Subject: [PATCH] Added return statement for fn in __init__ --- bindings/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bindings/__init__.py b/bindings/__init__.py index b49dc36..6a1ff15 100644 --- a/bindings/__init__.py +++ b/bindings/__init__.py @@ -8,5 +8,6 @@ def loadlibc(): except OSError as e: print("Error loading dynamically linked library.\nOSError: " + str(e)) raise SystemExit("Couldn't load %s" % sharedlib) + return libc libc = loadlibc() \ No newline at end of file