From 21d6fd5f24e448cf584661b7939d4c9fe9c3c48b Mon Sep 17 00:00:00 2001 From: Prabhjot Singh Date: Sat, 5 Mar 2016 19:40:53 +0530 Subject: [PATCH] Update Library.py --- neuroshare/Library.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/neuroshare/Library.py b/neuroshare/Library.py index 8a14b24..64cfa58 100644 --- a/neuroshare/Library.py +++ b/neuroshare/Library.py @@ -2,7 +2,6 @@ import sys from . import _capi - class ArgumentError(Exception): def __init__(self, arg, msg): self.arg = arg @@ -30,7 +29,6 @@ def __str__(self): def _find_dll(library_name): - known_paths = ["~/.neuroshare", "/usr/lib/neuroshare", "/usr/local/lib/neuroshare"] platform = sys.platform @@ -58,7 +56,6 @@ def _find_dll(library_name): def find_library_for_file(filename): - dll_map = {"mcd": "nsMCDLibrary", "plx": "nsPlxLibrary", "map": "nsAOLibrary", @@ -90,10 +87,7 @@ def load_library_for_file(filename): return Library.for_file(filename) # ## Library Implementation - - class Library(object): - _loaded_libs = {} @classmethod