Skip to content

Commit

Permalink
fix autopep8 linter.
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanHenson committed Oct 4, 2023
1 parent 69e198a commit bc6033e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion awscrt/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@
Returns True if either _awscrt was installed in the local environment or loaded from the system.
Otherwise returns False indicating that any other functions or modules in this library will also fail.
"""


def crt_wheel_installed():
try:
import _awscrt
return True
except Exception:
return False
return False

0 comments on commit bc6033e

Please sign in to comment.