Skip to content

Commit

Permalink
Tweak to formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
pgleeson committed Jul 26, 2023
1 parent 03027df commit b8052aa
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lems/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@
"""

import logging

try:
import importlib.metadata

__version__ = importlib.metadata.version("PyLEMS")
except ImportError:
import importlib_metadata

__version__ = importlib_metadata.version("PyLEMS")

logger = logging.getLogger("LEMS")
Expand Down

0 comments on commit b8052aa

Please sign in to comment.