Skip to content

Commit

Permalink
Update openff/toolkit/utils/openeye_wrapper.py
Browse files Browse the repository at this point in the history
Co-authored-by: Jeff Wagner <[email protected]>
  • Loading branch information
mattwthompson and j-wags authored Oct 2, 2024
1 parent 0e28133 commit a567141
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion openff/toolkit/utils/openeye_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
__all__ = ("OpenEyeToolkitWrapper",)


import zstandard # noqa
try:
import zstandard # noqa
except ImportError:
pass
import importlib
import logging
import pathlib
Expand Down

0 comments on commit a567141

Please sign in to comment.