Skip to content

Commit

Permalink
Remove None type hinting in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicasyu committed Sep 25, 2024
1 parent e939b78 commit 488bd7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/abm_colony_collection/test_get_depth_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


class TestGetDepthMap(unittest.TestCase):
def setUp(self) -> None:
def setUp(self):
array = np.zeros((10, 10, 10))

# Layer does not extend close to edge, so layer is not used to define
Expand Down
2 changes: 1 addition & 1 deletion tests/abm_colony_collection/test_get_neighbors_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@


class TestGetNeighborsMap(unittest.TestCase):
def setUp(self) -> None:
def setUp(self):
array = np.zeros((10, 10, 10))

# Layer does not extend close to edge, so layer is not used to define
Expand Down

0 comments on commit 488bd7d

Please sign in to comment.