Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -54,7 +54,7 @@ def draw_grid(data, highlight_coords=None):
|
|
54 |
ax.grid(True)
|
55 |
|
56 |
# Draw roads with a specified grey color
|
57 |
-
road_color = "#
|
58 |
for road in data.get('roads', []): # Check for roads in the data
|
59 |
start, end = road['start'], road['end']
|
60 |
# Determine if the road is vertical or horizontal based on start and end coordinates
|
|
|
54 |
ax.grid(True)
|
55 |
|
56 |
# Draw roads with a specified grey color
|
57 |
+
road_color = "#606060" # Light grey; change to "#505050" for dark grey
|
58 |
for road in data.get('roads', []): # Check for roads in the data
|
59 |
start, end = road['start'], road['end']
|
60 |
# Determine if the road is vertical or horizontal based on start and end coordinates
|