From a5cabe3c7429e476476aa5e1038c82f1734a4f6d Mon Sep 17 00:00:00 2001 From: Santiago Soler Date: Wed, 6 Mar 2024 15:38:38 -0800 Subject: [PATCH] [JOSS Review] Fix Python syntax of minimal example Fix the Python syntax of the minimal example in the `README.py`. Add a trailing comma to the `computation_points` argument when calling `polyhedral_gravity.evaluate()`. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 691241c6..44a4544c 100644 --- a/README.md +++ b/README.md @@ -100,7 +100,7 @@ The simplest way to compute the gravity is to use the `evaluate` function: potential, acceleration, tensor = polyhedral_gravity.evaluate( polyhedral_source=(cube_vertices, cube_faces), density=cube_density, - computation_points=computation_point + computation_points=computation_point, parallel=True ) ```