Skip to content

Commit

Permalink
Fix modern typing usage
Browse files Browse the repository at this point in the history
  • Loading branch information
clbarnes committed Oct 23, 2023
1 parent 1100f3b commit 149a95b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_connectivity.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import List, Tuple
from typing import List, Tuple, Dict

import pytest
import pandas as pd
Expand Down Expand Up @@ -125,7 +125,7 @@ def test_neuron_connector_synthetic(simple_network):


def test_neuron_connector_real(
neuron_connections: Tuple[NeuronList, dict[int, dict[int, int]]]
neuron_connections: Tuple[NeuronList, Dict[int, Dict[int, int]]]
):
nl, exp = neuron_connections
nc = NeuronConnector(nl)
Expand Down

0 comments on commit 149a95b

Please sign in to comment.