Skip to content

Commit 1121dbb

Browse files
committed
appease AppVeyor
1 parent b53dd61 commit 1121dbb

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

PathPlanning/TimeBasedPathPlanning/GridWithDynamicObstacles.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
import matplotlib.pyplot as plt
33
from enum import Enum
44

5-
type Numpy3DArray = np.ndarray[tuple[int, int, int], np.dtype[np.int_]]
6-
75
class Position:
86
x: int
97
y: int
@@ -48,7 +46,7 @@ class ObstacleArrangement(Enum):
4846
class Grid:
4947
# Set in constructor
5048
grid_size: np.ndarray
51-
grid: Numpy3DArray
49+
grid: np.ndarray
5250
obstacle_paths: list[list[Position]] = []
5351
# Obstacles will never occupy these points. Useful to avoid impossible scenarios
5452
obstacle_avoid_points: list[Position] = []

0 commit comments

Comments
 (0)