-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,3 @@ | ||
from cfxplorer.focus import Focus | ||
|
||
# Let users know if they're missing any of our hard dependencies | ||
_hard_dependencies = ("tensorflow", "numpy") | ||
_missing_dependencies = [] | ||
|
||
for _dependency in _hard_dependencies: | ||
try: | ||
__import__(_dependency) | ||
except ImportError as _e: # pragma: no cover | ||
_missing_dependencies.append(f"{_dependency}: {_e}") | ||
|
||
if _missing_dependencies: # pragma: no cover | ||
raise ImportError( | ||
"Unable to import required dependencies:\n" + "\n".join(_missing_dependencies) | ||
) | ||
del _hard_dependencies, _dependency, _missing_dependencies | ||
from .focus import Focus | ||
|
||
__all__ = ["Focus"] |