Skip to content

Commit

Permalink
Remove emoji to build without Unicode
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanv committed Sep 19, 2024
1 parent c8372e5 commit b7e496b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion advanced/interfacing_with_c/ctypes/cos_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from ctypes.util import find_library

libm_name = find_library("m")
assert libm_name is not None, "Cannot find libm (math) on this system 👀. That's bad."
assert libm_name is not None, "Cannot find libm (math) on this system :/ That's bad."

libm = ctypes.cdll.LoadLibrary(libm_name)

Expand Down

0 comments on commit b7e496b

Please sign in to comment.