Skip to content

Commit

Permalink
Fixed linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
Hjorthmedh committed Aug 22, 2024
1 parent 8544092 commit de68da3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bluepyopt/ephys/morphologies.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def replace_axon(sim=None, icell=None,

for index, section in enumerate(icell.axon):
section.L = axon_stub_length / 2
section.nseg = 1 + 2 * int(section.L/axon_nseg_frequency)
section.nseg = 1 + 2 * int(section.L / axon_nseg_frequency)
section.diam = ais_diams[index]
icell.axonal.append(sec=section)
icell.all.append(sec=section)
Expand Down

0 comments on commit de68da3

Please sign in to comment.