mirror of
https://github.com/brycedrennan/imaginAIry
synced 2024-10-31 03:20:40 +00:00
5b56f05da7
- fix: default config wasn't being selected for custom models
7 lines
159 B
Python
7 lines
159 B
Python
from importlib.metadata import PackageNotFoundError, version
|
|
|
|
try:
|
|
__version__ = version("imaginairy")
|
|
except PackageNotFoundError:
|
|
__version__ = None
|