Skip to content

Commit b7e496b

Browse files
committed
Remove emoji to build without Unicode
1 parent c8372e5 commit b7e496b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

advanced/interfacing_with_c/ctypes/cos_module.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from ctypes.util import find_library
99

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

1313
libm = ctypes.cdll.LoadLibrary(libm_name)
1414

0 commit comments

Comments
 (0)