1 from typing import List 2 3 from connectiongene import ConnectionGene 4 5 6 class NodeGene: 7 def __init__(self, value: float): 8 self.value: float = value 9 self.incoming: List[ConnectionGene] = []