Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
fdintino committed Sep 24, 2023
1 parent c4091ce commit c8bb061
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,9 @@ def _find_include_file(self, include):

def _find_shared_library_file(self, library):
for dir_ in self.compiler.library_dirs:
libfile = os.path.join(dir_, self.library_filename(library, lib_type="shared"))
libfile = os.path.join(
dir_, self.compiler.library_filename(library, lib_type="shared")
)
if os.path.isfile(libfile):
return libfile

Expand Down

0 comments on commit c8bb061

Please sign in to comment.