Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion pyastyle/python3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,8 @@
from ._macosx_universal.pyastyle import *
platform = "MacOS X Universal"
except ImportError:
raise ImportError("Could not find a suitable pyastyle binary for your platform and architecture.")
try:
from ._darwin.pyastyle import *
platform = "MacOS X Darwin"
except ImportError:
raise ImportError("Could not find a suitable pyastyle binary for your platform and architecture.")
Empty file.
Binary file added pyastyle/python3/_darwin/pyastyle.so
Binary file not shown.