From 11d383347b21699fde91d8786036e7cf26c3abaf Mon Sep 17 00:00:00 2001 From: Ewout ter Hoeven Date: Mon, 30 Dec 2024 17:33:38 +0100 Subject: [PATCH] paper: Format a codeblock to a single line --- paper/paper.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/paper/paper.md b/paper/paper.md index 5a3486f83af..d6a6e61b294 100644 --- a/paper/paper.md +++ b/paper/paper.md @@ -94,9 +94,7 @@ Mesa 3 provides both discrete (cell-based) and continuous space implementations. Example grid creation: ```python - grid = OrthogonalVonNeumannGrid( - (width, height), torus=False, random=model.random - ) + grid = OrthogonalVonNeumannGrid((width, height), torus=False, random=model.random) ``` Mesa provides specialized agent classes for spatial interactions in the discrete spaces: