Skip to content

Commit d5d3c50

Browse files
committed
refactor: change import messages
1 parent aef1038 commit d5d3c50

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/glasflow/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def _import_submodules(module):
4141
"1",
4242
]
4343
if USE_NFLOWS:
44-
print("glasflow is using `nflows` instead of the included submodule")
44+
print("glasflow is using an externally installed version of nflows")
4545
if not NFLOWS_INSTALLED:
4646
raise RuntimeError(
4747
"nflows is not installed. Set the environment variable "
@@ -55,7 +55,7 @@ def _import_submodules(module):
5555
# the nflows installation
5656
_import_submodules(nflows)
5757
else:
58-
print("glasflow is using the included fork of `nflows`")
58+
print("glasflow is using its own internal version of nflows")
5959

6060
from .flows import ( # noqa
6161
CouplingNSF,

0 commit comments

Comments
 (0)