From c1072e106fecd7cceba15a4844d6e27ad0815b6d Mon Sep 17 00:00:00 2001 From: Arohan Ajit Date: Fri, 20 Sep 2024 15:20:51 -0700 Subject: [PATCH] Update doc/python/raster_example_ctypes.py Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- doc/python/raster_example_ctypes.py | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/doc/python/raster_example_ctypes.py b/doc/python/raster_example_ctypes.py index 4ef23451761..67f7a2cf4cb 100644 --- a/doc/python/raster_example_ctypes.py +++ b/doc/python/raster_example_ctypes.py @@ -23,9 +23,16 @@ from grass.lib.gis import G_gisinit, G_find_raster2, G_free from grass.lib.raster import ( - Rast_map_type, CELL_TYPE, FCELL_TYPE, DCELL_TYPE, - Rast_open_old, Rast_allocate_buf, Rast_window_rows, - Rast_window_cols, Rast_get_row, Rast_close + Rast_map_type, + CELL_TYPE, + FCELL_TYPE, + DCELL_TYPE, + Rast_open_old, + Rast_allocate_buf, + Rast_window_rows, + Rast_window_cols, + Rast_get_row, + Rast_close, ) # check if GRASS is running or not