Skip to content

Commit

Permalink
grass.pygrass: remove unused arg in ctypes.CFUNCTYPE (#4113)
Browse files Browse the repository at this point in the history
Co-authored-by: Anna Petrasova <kratochanna@gmail.com>
  • Loading branch information
mshukuno and petrasovaa authored Aug 2, 2024
1 parent a342ea8 commit cbc8fd5
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions python/grass/pygrass/raster/rowio.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@
from grass.pygrass.raster.raster_type import TYPE as RTYPE


CMPFUNC = ctypes.CFUNCTYPE(
ctypes.c_int, ctypes.c_int, ctypes.c_void_p, ctypes.c_int, ctypes.c_int
)
CMPFUNC = ctypes.CFUNCTYPE(ctypes.c_int, ctypes.c_int, ctypes.c_void_p, ctypes.c_int)


def getmaprow_CELL(fd, buf, row):
Expand Down

0 comments on commit cbc8fd5

Please sign in to comment.