Skip to content

Commit

Permalink
Fixed __init__.py import order, as version is now used by API it need…
Browse files Browse the repository at this point in the history
…s to be created in init before import of the module
  • Loading branch information
Kristjan committed Jul 1, 2022
1 parent 01b5cf0 commit bcab4f4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion OPDM/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from OPDM.OPDM_SOAP_API import create_client
from ._version import get_versions
__version__ = get_versions()['version']
del get_versions
from OPDM.OPDM_SOAP_API import create_client

0 comments on commit bcab4f4

Please sign in to comment.