@@ -122,22 +122,22 @@ def clib_names(os_name: str) -> list[str]:
122
122
return libnames
123
123
124
124
125
- def clib_full_names (env : Mapping | None = None ) -> Iterator [str ]:
125
+ def clib_full_names (env : Mapping [ str , str ] | None = None ) -> Iterator [str ]:
126
126
"""
127
127
Return full path(s) of GMT shared library for the current operating system.
128
128
129
129
The GMT shared library is searched for in following ways, sorted by priority:
130
130
131
131
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)
134
134
4. System default search path
135
135
136
136
Parameters
137
137
----------
138
138
env
139
139
A dictionary containing the environment variables. If ``None``, will default to
140
- `` os.environ` `.
140
+ :py:data:` os.environ`.
141
141
142
142
Yields
143
143
------
@@ -180,7 +180,7 @@ def clib_full_names(env: Mapping | None = None) -> Iterator[str]:
180
180
yield libname
181
181
182
182
183
- def check_libgmt (libgmt : ctypes .CDLL ):
183
+ def check_libgmt (libgmt : ctypes .CDLL ) -> None :
184
184
"""
185
185
Make sure the GMT shared library was loaded correctly.
186
186
@@ -198,7 +198,7 @@ def check_libgmt(libgmt: ctypes.CDLL):
198
198
GMTCLibError
199
199
"""
200
200
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 } " ):
202
202
msg = (
203
203
f"Error loading '{ libgmt ._name } '. Couldn't access function GMT_{ func } . "
204
204
"Ensure that you have installed an up-to-date GMT version 6 library and "
0 commit comments