Skip to content

Commit

Permalink
Merge pull request #98 from volkamerlab/update-module-disclaimer
Browse files Browse the repository at this point in the history
Module disclaimer: Use logger instead of print
  • Loading branch information
dominiquesydow authored Sep 9, 2021
2 parents 3c2e787 + 8f210cf commit 88654c6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion opencadd/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
A Python library for structural cheminformatics
"""

import logging

# Handle versioneer
from ._version import get_versions

Expand All @@ -11,7 +13,9 @@
__git_revision__ = versions["full-revisionid"]
del get_versions, versions

print(
_logger = logging.getLogger(__name__)

_logger.info(
"""
Please note the following development stages of opencadd's submodules:
Expand Down

0 comments on commit 88654c6

Please sign in to comment.