diff options
Diffstat (limited to 'src/libgamma_error.py')
-rw-r--r-- | src/libgamma_error.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libgamma_error.py b/src/libgamma_error.py index b9530fa..7b16886 100644 --- a/src/libgamma_error.py +++ b/src/libgamma_error.py @@ -115,8 +115,7 @@ def name_of_error(value : int) -> str: @param value The error code. @return The name of the definition associated with the error code, - `None` if the error code does not exist. The return string - should not be `free`:d. + `None` if the error code does not exist. ''' from libgamma_native_error import libgamma_native_name_of_error return libgamma_native_name_of_error(value) |