Skip to content

Commit

Permalink
remove unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Nov 17, 2023
1 parent 9b814f5 commit 2e56883
Showing 1 changed file with 1 addition and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,12 @@ class AbstractConnector(object, metaclass=AbstractBase):
("synapse_type", "uint8")]

__slots__ = [
"_delays",
"__min_delay",
"__n_clipped_delays",
"__safe",
"__space",
"__verbose",
"_weights",
"__param_seeds",
"__synapse_info"]
"__param_seeds"]

def __init__(self, safe=True, callback=None, verbose=False):
"""
Expand All @@ -80,7 +77,6 @@ def __init__(self, safe=True, callback=None, verbose=False):
self.__n_clipped_delays = numpy.int64(0)
self.__min_delay = 0
self.__param_seeds = dict()
self.__synapse_info = None

def set_space(self, space):
"""
Expand Down Expand Up @@ -601,15 +597,6 @@ def space(self, new_value):
"""
self.__space = new_value

@property
def synapse_info(self):
"""
The synapse_info object (may be updated after instantiation).
:rtype: synapse_info or None
"""
return self.__synapse_info

@property
def verbose(self):
"""
Expand Down

0 comments on commit 2e56883

Please sign in to comment.