Skip to content

Commit cff8437

Browse files
authored
BUG: Address cython nogil signature warning (#1428)
1 parent 2a27805 commit cff8437

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyproj/_context.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ cpdef void _clear_proj_error() noexcept:
107107
_INTERNAL_PROJ_ERROR = None
108108

109109

110-
cdef void pyproj_log_function(void *user_data, int level, const char *error_msg) nogil noexcept:
110+
cdef void pyproj_log_function(void *user_data, int level, const char *error_msg) noexcept nogil:
111111
"""
112112
Log function for catching PROJ errors.
113113
"""

0 commit comments

Comments
 (0)