Skip to content

Commit

Permalink
CELE-46 Remove outdated comments
Browse files Browse the repository at this point in the history
  • Loading branch information
dvcorreia committed Aug 20, 2024
1 parent c1b6492 commit 605011a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions applications/visualizer/backend/ingestion/validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,17 +49,17 @@ class Connection(BaseModel):
ids: List[int] = Field(
default_factory=list,
description="list of neuron IDs involved in this connection",
) # TODO: should be optional? appers to be empty in some entries
)
post: str # the name of a neuron as defined in "neurons.json"
post_tid: List[int] = Field(
default_factory=list,
description="list of neuron IDs of a post synapse for a dedicated post neuron",
) # TODO: should be optional? appers to be empty in some entries
)
pre: str # the name of a neuron as defined in "neurons.json"
pre_tid: List[int] = Field(
default_factory=list,
description="list of neuron IDs of a pre synapse for a dedicated pre neuron",
) # TODO: should be optional? appers to be empty in some entries
)
syn: List[int] = Field(
...,
description="list of weights of a post or pre synapses (indice matches the neuron in pre/post_tid)",
Expand Down

0 comments on commit 605011a

Please sign in to comment.