Skip to content

Commit

Permalink
fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-janssen committed Jul 29, 2024
1 parent fe58857 commit 9f01b57
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions atomistics/referencedata/__init__.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,12 @@
from atomistics.referencedata.wolfram import get_chemical_information_from_wolframalpha
from atomistics.referencedata.wiki import get_experimental_elastic_property_wikipedia

try:
from atomistics.referencedata.mendeleevdb import get_chemical_information_from_mendeleev
from atomistics.referencedata.mendeleevdb import get_chemical_information_from_mendeleev, get_chemical_information_from_wolframalpha
except ImportError:
__all__ = []
else:
__all__ = [get_chemical_information_from_mendeleev]
__all__ = [get_chemical_information_from_mendeleev, get_chemical_information_from_wolframalpha]


__all__ += [
get_chemical_information_from_mendeleev,
get_chemical_information_from_wolframalpha,
get_experimental_elastic_property_wikipedia,
]
__all__ += [get_experimental_elastic_property_wikipedia]

0 comments on commit 9f01b57

Please sign in to comment.