We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aef1038 commit d5d3c50Copy full SHA for d5d3c50
src/glasflow/__init__.py
@@ -41,7 +41,7 @@ def _import_submodules(module):
41
"1",
42
]
43
if USE_NFLOWS:
44
- print("glasflow is using `nflows` instead of the included submodule")
+ print("glasflow is using an externally installed version of nflows")
45
if not NFLOWS_INSTALLED:
46
raise RuntimeError(
47
"nflows is not installed. Set the environment variable "
@@ -55,7 +55,7 @@ def _import_submodules(module):
55
# the nflows installation
56
_import_submodules(nflows)
57
else:
58
- print("glasflow is using the included fork of `nflows`")
+ print("glasflow is using its own internal version of nflows")
59
60
from .flows import ( # noqa
61
CouplingNSF,
0 commit comments