Skip to content

Commit d2fbb38

Browse files
authored
clib.loading: Improve the typing hints and docstrings (#3465)
1 parent 6606845 commit d2fbb38

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

pygmt/clib/loading.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -122,22 +122,22 @@ def clib_names(os_name: str) -> list[str]:
122122
return libnames
123123

124124

125-
def clib_full_names(env: Mapping | None = None) -> Iterator[str]:
125+
def clib_full_names(env: Mapping[str, str] | None = None) -> Iterator[str]:
126126
"""
127127
Return full path(s) of GMT shared library for the current operating system.
128128
129129
The GMT shared library is searched for in following ways, sorted by priority:
130130
131131
1. Path defined by the environment variable :term:`GMT_LIBRARY_PATH`
132-
2. Path returned by the command "gmt --show-library"
133-
3. Path defined by the environment variable PATH (Windows only)
132+
2. Path returned by the command ``gmt --show-library``
133+
3. Path defined by the environment variable :term:`PATH` (Windows only)
134134
4. System default search path
135135
136136
Parameters
137137
----------
138138
env
139139
A dictionary containing the environment variables. If ``None``, will default to
140-
``os.environ``.
140+
:py:data:`os.environ`.
141141
142142
Yields
143143
------
@@ -180,7 +180,7 @@ def clib_full_names(env: Mapping | None = None) -> Iterator[str]:
180180
yield libname
181181

182182

183-
def check_libgmt(libgmt: ctypes.CDLL):
183+
def check_libgmt(libgmt: ctypes.CDLL) -> None:
184184
"""
185185
Make sure the GMT shared library was loaded correctly.
186186
@@ -198,7 +198,7 @@ def check_libgmt(libgmt: ctypes.CDLL):
198198
GMTCLibError
199199
"""
200200
for func in ["Create_Session", "Get_Enum", "Call_Module", "Destroy_Session"]:
201-
if not hasattr(libgmt, "GMT_" + func):
201+
if not hasattr(libgmt, f"GMT_{func}"):
202202
msg = (
203203
f"Error loading '{libgmt._name}'. Couldn't access function GMT_{func}. "
204204
"Ensure that you have installed an up-to-date GMT version 6 library and "

0 commit comments

Comments
 (0)