Skip to content

Commit

Permalink
renamed property "pop_name" to "population_name" for all reduced neur…
Browse files Browse the repository at this point in the history
…on models
  • Loading branch information
iraikov committed Aug 31, 2024
1 parent 0991b53 commit f5a43bd
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/miv_simulator/cells.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,8 +375,8 @@ def gid(self):
return self._gid

@property
def pop_name(self):
return self._pop_name
def population_name(self):
return self._population_name

@property
def soma(self):
Expand Down Expand Up @@ -450,7 +450,7 @@ def __init__(
:param cell_config: :namedtuple:'PRconfig' or :namedtuple:'PRNconfig'
"""
self._gid = gid
self._pop_name = pop_name
self._population_name = pop_name
self.tree = nx.DiGraph()
self.count = 0 # Keep track of number of nodes
if env is not None:
Expand Down Expand Up @@ -541,8 +541,8 @@ def gid(self):
return self._gid

@property
def pop_name(self):
return self._pop_name
def population_name(self):
return self._population_name

@property
def soma(self):
Expand Down Expand Up @@ -664,8 +664,8 @@ def gid(self) -> int:
return self._gid

@property
def pop_name(self):
return self._pop_name
def population_name(self):
return self._population_name

@property
def soma(self) -> List[SectionNode]:
Expand Down

0 comments on commit f5a43bd

Please sign in to comment.