Skip to content

Commit

Permalink
chore: use format_ instead of format which is a python built-in
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjayankur31 committed Dec 18, 2024
1 parent 66e73be commit c119806
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions netpyne/conversion/neuromlFormat.py
Original file line number Diff line number Diff line change
Expand Up @@ -2076,7 +2076,7 @@ def handle_input_list(

import neuroml

format = "NeuroML2"
format_ = "NeuroML2"

# TODO Make better check for stoch/poisson/noisy inputs!
if (
Expand All @@ -2085,12 +2085,12 @@ def handle_input_list(
or "noisy" in component.lower()
or "poisson" in component.lower()
):
format = "NeuroML2_stochastic_input"
format_ = "NeuroML2_stochastic_input"

self.popStimSources[inputListId] = {
"label": inputListId,
"type": component,
"originalFormat": format,
"originalFormat": format_,
}
self.popStimLists[inputListId] = {
"source": inputListId,
Expand Down

0 comments on commit c119806

Please sign in to comment.