Skip to content

Commit

Permalink
fix import error (#921)
Browse files Browse the repository at this point in the history
  • Loading branch information
n-gao committed Nov 7, 2023
1 parent 17c5306 commit 58718c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
@@ -1,6 +1,6 @@
docopt>=0.3, <1.0
jsonpickle>=2.2.0
munch>=2.5, <4.0
munch>=2.5, <5.0
wrapt>=1.0, <2.0
py-cpuinfo>=4.0
colorama>=0.4
Expand Down
2 changes: 1 addition & 1 deletion sacred/optional.py
Expand Up @@ -41,7 +41,7 @@ def get_tensorflow():
else:
try:
libc = ctypes.cdll.msvcrt # Windows
except OSError:
except (OSError, AttributeError):
libc = ctypes.cdll.LoadLibrary(find_library("c"))


Expand Down

0 comments on commit 58718c0

Please sign in to comment.