We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b68b914 commit c87c848Copy full SHA for c87c848
parcels/__init__.py
@@ -2,7 +2,7 @@
2
3
__version__ = version
4
5
-import warnings
+import warnings as _warnings
6
7
from parcels.application_kernels import *
8
from parcels.field import *
@@ -14,7 +14,7 @@
14
from parcels.particleset import *
15
from parcels.tools import *
16
17
-warnings.warn(
+_warnings.warn(
18
"This is an alpha version of Parcels v4. The API is not stable and may change without deprecation warnings.",
19
UserWarning,
20
stacklevel=2,
0 commit comments