Skip to content

Commit

Permalink
Merge pull request #580 from SpiNNakerManchester/typing
Browse files Browse the repository at this point in the history
Typing
  • Loading branch information
Christian-B authored Oct 22, 2024
2 parents 6070867 + 927b1c9 commit 206d9fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion mypy.bash
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ utils="../SpiNNUtils/spinn_utilities"
machine="../SpiNNMachine/spinn_machine"
man="../SpiNNMan/spinnman"

mypy $utils $machine $man pacman
mypy --python-version 3.8 $utils $machine $man pacman
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ def test_new_multicast_routing_tables(self):
mrt.append(t1)
mrt.append(t2)
tables = MulticastRoutingTables(mrt)
self.assertEqual(len(tables), len(list(tables)))
retrieved_tables = tables.routing_tables
self.assertEqual(len(retrieved_tables), len(mrt))
self.assertEqual(len(tables), len(mrt))
Expand Down

0 comments on commit 206d9fc

Please sign in to comment.